salix/modules/agency/front/location/index.js

21 lines
353 B
JavaScript
Raw Normal View History

2018-12-04 12:18:27 +00:00
import ngModule from '../module';
2018-09-24 12:51:27 +00:00
class Controller {
constructor($scope) {
this.$scope = $scope;
}
}
Controller.$inject = ['$scope'];
2018-12-04 12:18:27 +00:00
ngModule.component('vnZoneLocation', {
2018-09-24 12:51:27 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
zone: '<'
},
require: {
card: '^vnZoneCard'
}
});