chore: 构建大小写问题

This commit is contained in:
橙子
2024-01-25 20:32:01 +08:00
parent 10823b3c98
commit add74b0ad0
5 changed files with 172 additions and 124 deletions

View File

@@ -0,0 +1,36 @@
<template>
<div class="sign-box">
<div class="menuList">
<ActivityNav/>
</div>
<div class="page">
<RouterView />
</div>
</div>
</template>
<script setup>
import ActivityNav from './ActivityNav.vue'
</script>
<style lang="scss" scoped>
.sign-box {
display: flex;
justify-content: space-between;
width: 1300px;
height: 100%;
padding: 20px 0 10px;
.menuList {
width: 20%;
height: 100%;
background-color: #fff;
border-radius: 5px;
}
.page {
width: 75%;
height: 100%;
background-color: #fff;
border-radius: 5px;
}
}
</style>