Patrick Steele-Idem 05110865b4 Fixes #393 Multiple top level DOM elements for a component
Also fixes #395 - Make w-bind attribute completely optional
Also fixes #399 - Single file Marko component
2016-12-02 08:44:23 -07:00

14 lines
292 B
JavaScript

module.exports = {
getInitialState: function(input) {
return {
name: input.name,
age: input.age
};
},
getName: function() {
return this.els[0].innerHTML;
},
getAge: function() {
return this.els[1].innerHTML;
}
};