|
import ngModule from '../../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
export default class Controller extends Section {}
|
|
|
|
ngModule.component('vnRoleBasicData', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
role: '<'
|
|
}
|
|
});
|