Files
Yi.Admin/Yi.BBS.Vue3/src/layout/Index.vue

25 lines
376 B
Vue
Raw Normal View History

2023-03-03 21:58:58 +08:00
<template>
<div class="common-layout">
<el-container>
<el-header>
<AppHeader />
</el-header>
<el-main>
<AppBody />
</el-main>
</el-container>
</div>
</template>
<script setup>
import AppHeader from "./AppHeader.vue"
import AppBody from "./AppBody.vue"
2023-03-03 23:56:37 +08:00
</script>
<style scoped>
.el-main{
margin: 0;
padding: 0;
}
</style>