<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBIZHardwareIndexPickupViewBase from './ibizhardware-index-pickup-view-base.vue';

import view_pickupviewpanel from '@widgets/ibizhardware/index-pickup-viewpickupviewpanel-pickupviewpanel/index-pickup-viewpickupviewpanel-pickupviewpanel.vue';
// ๅŸบไบŽ @VIEW/@MACRO/VIEW.vue.ftl ็”Ÿๆˆ
@Component({
    components: {
        view_pickupviewpanel, 
    },
    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 IBIZHardwareIndexPickupView extends IBIZHardwareIndexPickupViewBase {

}
</script>