app-panel-view.vue 732 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import AppPanelViewBase from './app-panel-view-base.vue';

import view_panel from '@widgets/app/app-panel-view-panel/app-panel-view-panel.vue';
// 基于 @VIEW/应用面板视图/VIEW.vue.ftl 生成

@Component({
    components: {
        view_panel, 
    },
    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 AppPanelView extends AppPanelViewBase {

}
</script>