modules.define('button', function(provide, Button) {
provide(button.decl({ modName: 'load', modVal: 'something' }, {
onSetMod: {
js: {
inited: function() {
this.bindTo('click', function(e) {
e.preventDefault();
console.log('жмяк load_something');
});
}
}
}
}));
});