vue-antd-admin/src/layouts/BlankView.vue
iczer d741904f50 fix: the cache problem in tabs mode;🐛
修复:多页签模式下的缓存问题;
2020-08-07 22:14:56 +08:00

23 lines
490 B
Vue

<template>
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
<router-view />
</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'])
}
}
</script>
<style scoped>
</style>