chore: 构建重命名

This commit is contained in:
陈淳
2023-12-14 10:05:32 +08:00
parent 99b1deea3c
commit d4c3756f75
90 changed files with 13475 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<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>