API change: scope
option is now split into data
and methods
. proto
option has been removed.
Object observer rewrite: the ViewModel will now directly proxy the value get/set to the data
object passed in at instantiation. This allows the user to manipulate data directly or on the ViewModel and they will always be in sync.
The new observe mechanism makes the v-repeat
and v-component
much simpler, as a nested object is no longer needed when creating child ViewModels:
Before
<div v-component="list:listOptions"> <div v-repeat="item:model.items"> {{item.title}} </div> </div>
After
<div v-component="list:listOptions"> <div v-repeat="items"> {{title}} </div> </div>
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4