salix/modules/item/front/niche/index.js

17 lines
388 B
JavaScript
Raw Normal View History

import ngModule from '../module';
2020-03-17 13:43:46 +00:00
import Section from 'salix/components/section';
2020-03-17 13:43:46 +00:00
export default class Controller extends Section {
onSubmit() {
2020-03-17 13:43:46 +00:00
this.$.watcher.check();
this.$.model.save().then(() =>
this.$.watcher.notifySaved()
);
}
2018-02-20 11:25:51 +00:00
}
ngModule.component('vnItemNiche', {
template: require('./index.html'),
2018-02-20 11:25:51 +00:00
controller: Controller
});