feat: 添加bbs前端搭建

This commit is contained in:
橙子
2023-03-03 21:58:58 +08:00
parent e0da9e1a87
commit 61f8a07753
17 changed files with 100 additions and 319 deletions

View File

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