16 lines
391 B
JavaScript
16 lines
391 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
export default class Controller extends Section {
|
|
onSubmit() {
|
|
this.$.watcher.submit().then(
|
|
res => this.$state.go('route.card.summary', {id: res.data.id})
|
|
);
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnRouteCreate', {
|
|
template: require('./index.html'),
|
|
controller: Controller
|
|
});
|