mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-05-23 05:19:23 +08:00
23 lines
490 B
Vue
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>
|