import ngModule from '../module'; import Section from 'salix/components/section'; class Controller extends Section { constructor($element, $) { super($element, $); } async $onInit() { const url = await this.vnApp.getUrl(`worker/${this.$params.id}/pda`); console.log('url: ', url); window.location.href = url; } } ngModule.vnComponent('vnClaimPhotos', { controller: Controller, bindings: { claim: '<' } });