Patrick Steele-Idem bc384549f6 Updated tests
2017-02-21 17:16:53 -07:00

16 lines
309 B
JavaScript

module.exports = {
onInput: function(input) {
var label = input.label || 'BAR';
this.label = label;
},
onMount: function() {
this.name = 'app-bar';
var el = this.el;
this.appendHtml = function(html) {
el.innerHTML += html;
};
}
};