rework api

This commit is contained in:
Leo Horie 2015-04-09 22:44:45 -04:00
parent 6abb868c6b
commit 9e8dc6998d
14 changed files with 830 additions and 345 deletions

View file

@ -35,7 +35,7 @@ It can be used in conjunction with [`m.withAttr`](mithril.withAttr.md) to implem
```javascript
//a contrived example of bi-directional data binding
var User = m.component({
var User = {
model: function(name) {
this.name = m.prop(name);
},
@ -47,7 +47,7 @@ var User = m.component({
m("input", {onchange: m.withAttr("value", controller.user.name), value: controller.user.name()})
]);
}
});
};
```
In the example above, the usage of `m.prop` allows the developer to change the implementation of the user name getter/setter without the need for code changes in the controller and view.