<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/@MACRO/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>