<script lang='tsx'> import { Component } from 'vue-property-decorator'; import OpportunityGridViewBase from './opportunity-grid-view-base.vue'; import view_grid from '@widgets/opportunity/main-grid/main-grid.vue'; import view_searchform from '@widgets/opportunity/default-searchform/default-searchform.vue'; @Component({ components: { view_grid, view_searchform, }, beforeRouteEnter: (to: any, from: any, next: any) => { next((vm: any) => { vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag }); }); }, }) export default class OpportunityGridView extends OpportunityGridViewBase { } </script>