import ngModule from '../module'; class Controller { constructor($scope, $state) { this.$scope = $scope; this.$state = $state; } onSubmit() { this.$scope.watcher.submit().then(() => { this.card.reload(); }); } } Controller.$inject = ['$scope', '$state']; ngModule.component('vnZoneBasicData', { template: require('./index.html'), controller: Controller, bindings: { zone: '<' }, require: { card: '^vnZoneCard' } });