25 lines
478 B
JavaScript
25 lines
478 B
JavaScript
import ngModule from '../module';
|
|
|
|
class Controller {
|
|
constructor($scope, $state) {
|
|
this.$scope = $scope;
|
|
this.$state = $state;
|
|
}
|
|
|
|
onSubmit() {
|
|
this.$scope.watcher.submit().then(() => {
|
|
this.card.reload();
|
|
});
|
|
}
|
|
}
|
|
ngModule.component('vnRouteBasicData', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
route: '<'
|
|
},
|
|
require: {
|
|
card: '^vnRouteCard'
|
|
}
|
|
});
|