mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-02 07:06:37 +08:00
27 lines
422 B
Vue
27 lines
422 B
Vue
<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"
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-main{
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 10rem;
|
|
background-color: #F0F2F5;
|
|
}
|
|
</style> |