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

16 lines
332 B
JavaScript
Raw Normal View History

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