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

16 lines
331 B
JavaScript
Raw Normal View History

2019-03-27 07:56:25 +00:00
import ngModule from '../module';
class Controller {
constructor($scope, $stateParams) {
this.$scope = $scope;
this.$stateParams = $stateParams;
}
}
Controller.$inject = ['$scope', '$stateParams'];
ngModule.component('vnRouteLog', {
template: require('./index.html'),
controller: Controller,
});