vue-antd-admin/src/layouts/BlankView.vue
iczer ef34bcfc8c fix: the cache problem of page with dynamic route; 🐛
修复:动态路由下页面缓存问题;
2020-08-05 13:44:50 +08:00

26 lines
626 B
Vue

<template>
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
<keep-alive :exclude="dustbins" v-if="multiPage">
<router-view :key="$route.fullPath" />
</keep-alive>
<router-view v-else />
</page-toggle-transition>
</template>
<script>
import PageToggleTransition from '../components/transition/PageToggleTransition';
import {mapState} from 'vuex'
export default {
name: 'BlankView',
components: {PageToggleTransition},
computed: {
...mapState('setting', ['multiPage', 'animate', 'dustbins'])
}
}
</script>
<style scoped>
</style>