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