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'];
|
|
|
|
|
2018-10-29 10:56:55 +00:00
|
|
|
ngModule.component('vnClientLog', {
|
2018-10-03 09:27:05 +00:00
|
|
|
template: require('./index.html'),
|
2018-10-29 10:56:55 +00:00
|
|
|
controller: Controller,
|
2018-10-03 09:27:05 +00:00
|
|
|
});
|