mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
19 lines
230 B
Vue
19 lines
230 B
Vue
<template>
|
|
<div class="full_screen">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "layout",
|
|
components: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {}
|
|
}
|
|
</script> |