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