<script lang='ts'>
import { Component } from 'vue-property-decorator';
import WFIMWFProxyDataViewBase from './wfimwfproxy-data-view-base.vue';
@Component({
components: {
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag });
});
},
})
export default class WFIMWFProxyDataView extends WFIMWFProxyDataViewBase {
}
</script>
-
由 ibizdev 提交于afb0f08e