Git bug fix

This commit is contained in:
GUjiYN 2024-01-27 15:00:00 +08:00
parent 420fc0298a
commit a246b14b25
2 changed files with 27 additions and 3 deletions

View File

@ -21,3 +21,25 @@ import LeftBar from "@/Manager/LeftBar.vue";
flex: 1; /* 让内容部分占据剩余空间 */
}
</style>
<style scoped>
.container {
display: flex;
flex-direction: row;
}
.content {
flex: 1; /* 让内容部分占据剩余空间 */
}
</style>
<style scoped>
.container {
display: flex;
flex-direction: row;
}
.content {
flex: 1; /* 让内容部分占据剩余空间 */
}
</style>

View File

@ -1,6 +1,8 @@
<template style="display: flex;flex-direction: column;">
<Header></Header>
<MainSection></MainSection>
<template >
<div style="display: flex;flex-direction: column;">
<Header></Header>
<MainSection></MainSection>
</div>
</template>
<script setup>
import Header from "@/Manager/Header.vue";