17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
|
import ngModule from '../../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
export default class Controller extends Section {
|
||
|
onSubmit() {
|
||
|
this.$.watcher.submit();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.component('vnRoadmapBasicData', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
roadmap: '<'
|
||
|
}
|
||
|
});
|