-
Notifications
You must be signed in to change notification settings - Fork 24
larukedi edited this page Dec 15, 2014
·
7 revisions
Usage: $l.mvc.init(app, model)
<div id="test">
<span lr-bind="prop.textContent: hello"></span>
<span lr-bind="style.color: favoritecolor, prop.textContent: name"></span>
</div>$l.ready(function() {
var myModel = new $l.stack({
hello: 'hi',
name: 'eser',
favoritecolor: 'orange'
});
$l.mvc.init('test', myModel);
});