salix/modules/ticket/front/log/index.js

16 lines
332 B
JavaScript
Raw Normal View History

2018-11-26 10:41:11 +00:00
import ngModule from '../module';
class Controller {
constructor($scope, $stateParams) {
this.$scope = $scope;
this.$stateParams = $stateParams;
}
}
Controller.$inject = ['$scope', '$stateParams'];
ngModule.component('vnTicketLog', {
template: require('./index.html'),
controller: Controller,
});