import ngModule from '../module'; import ModuleMain from 'salix/components/module-main'; export default class Client extends ModuleMain { constructor($element, $) { super($element, $); } async $onInit() { this.$state.go('home'); window.location.href = await this.vnApp.getUrl(`customer/`); } } ngModule.vnComponent('vnClient', { controller: Client, template: require('./index.html') });