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

18 lines
345 B
JavaScript

import ngModule from '../../module';
export default class Controller {
constructor($stateParams) {
this.$stateParams = $stateParams;
}
}
Controller.$inject = ['$stateParams'];
ngModule.component('vnClientNote', {
template: require('./index.html'),
controller: Controller,
bindings: {
client: '<'
}
});