feat: 基础设施搭建

This commit is contained in:
橙子
2024-10-14 00:29:55 +08:00
parent 801e30c1dc
commit eabbd55789
7 changed files with 393 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<script setup>
</script>
<template>
<div class="body">
<div class="head"></div>
<div class="content">
<router-view></router-view>
<router-view name="market"></router-view>
</div>
<div class="bottom"></div>
</div>
</template>
<style scoped>
.body{
display: flex;
background-color: #cdcdcd;
}
</style>