gwendall/way.js

just a question: what will be printed under this situation

Opened this issue · 0 comments

<div way-scope="someScope1">
    <div way-scope-break="true">
        <div way-data="someScope1.with.something"></div>
        <!-- Will render "hello" -->
    </div>
</div>
<script>
way.set("someScope1", {
    with: {
        something: "hello "
    }
})
</script>

I'm a little puzzled with this feature 'way-scope-break'.
I understand it this way that it will render nothing.