mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
26 lines
542 B
Vue
26 lines
542 B
Vue
<template>
|
|
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
|
<keep-alive v-if="multiPage">
|
|
<router-view />
|
|
</keep-alive>
|
|
<router-view v-else />
|
|
</page-toggle-transition>
|
|
</template>
|
|
|
|
<script>
|
|
import PageToggleTransition from '../components/transition/PageToggleTransition';
|
|
import {mapState} from 'vuex'
|
|
|
|
export default {
|
|
name: 'RouteView',
|
|
components: {PageToggleTransition},
|
|
computed: {
|
|
...mapState('setting', ['multiPage', 'animate'])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|