17 lines
430 B
JavaScript
17 lines
430 B
JavaScript
import ngModule from '../module';
|
|
import ModuleMain from 'salix/components/module-main';
|
|
export default class Items extends ModuleMain {
|
|
constructor($element, $) {
|
|
super($element, $);
|
|
}
|
|
async $onInit() {
|
|
this.$state.go('home');
|
|
window.location.href = await this.vnApp.getUrl(`claim/`);
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnItems', {
|
|
controller: Items,
|
|
template: require('./index.html')
|
|
});
|