vue+antd 后台管理框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
290 B

7 years ago
<template>
<global-layout>
<transition name="page-toggle">
7 years ago
<router-view />
</transition>
</global-layout>
7 years ago
</template>
<script>
import GlobalLayout from './GlobalLayout'
7 years ago
export default {
name: 'MenuView',
components: {GlobalLayout}
7 years ago
}
</script>
<style scoped>
</style>