wipeoutjs / wipeout

A pure MVVM javascript framework based on knockout
http://wipeoutjs.github.io/wipeout
0 stars 2 forks source link

Convenience items in template #93

Closed ShaneGH closed 9 years ago

ShaneGH commented 9 years ago

For instance, angular has something like:

<ul for item in items>
</ul>

Maybe a html attr will do:

<ul wo-for="$model.items">
    <li wo-content="$model.text"></li>
</ul>