import ngModule from '../module'; import Section from 'salix/components/section'; export default class Controller extends Section { get user() { return this._user; } set user(value) { this._user = value; if (!value) return; } } ngModule.component('vnUserPrivileges', { template: require('./index.html'), controller: Controller, bindings: { user: '<' } });