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