第一次提交,该项目为LionWebsite的移动端

This commit is contained in:
emm
2022-09-06 23:25:55 +08:00
commit 34b1fdaadf
6 changed files with 967 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<script setup>
import Side from "./components/Side.vue";
import DashBoard from "./components/DashBoard.vue";
</script>
<template>
<div class="app">
<el-container>
<Side/>
<el-main>
<DashBoard/>
</el-main>
</el-container>
</div>
</template>
<style>
.app{
background-color: #c6e2ff;
}
</style>