salix/modules/worker/front/worker-log/index.js

16 lines
332 B
JavaScript
Raw Normal View History

2020-03-24 11:20:53 +00:00
import ngModule from '../module';
class Controller {
constructor($scope, $stateParams) {
this.$scope = $scope;
this.$stateParams = $stateParams;
}
}
Controller.$inject = ['$scope', '$stateParams'];
ngModule.component('vnWorkerLog', {
template: require('./index.html'),
controller: Controller,
});