<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBIZSample0003STabExpView_layoutBase from './ibizsample0003-stab-exp-view-layout-base.vue';
import view_tabexppanel from '@widgets/ibizsample0003/stab-exp-view-layouttabexppanel-tabexppanel/stab-exp-view-layouttabexppanel-tabexppanel.vue';
// 基于 @VIEW/实体分页导航视图/VIEW.vue.ftl 生成
@Component({
components: {
view_tabexppanel,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
if(!Object.is(vm.navModel,"route")){
vm.initNavDataWithTab(vm.viewCacheData);
}
vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag });
});
},
})
export default class IBIZSample0003STabExpView_layout extends IBIZSample0003STabExpView_layoutBase {
}
</script>
-
由 ibizdev 提交于cfe7e01a