update 完成header的重构

This commit is contained in:
lb
2023-07-11 11:20:17 +08:00
parent 3c51d2207b
commit a11c01dc63
5 changed files with 154 additions and 45 deletions

26
src/views/LeftSide.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<div class="left-side"></div>
</template>
<script>
export default {
name: "LeftSide",
props: {},
data() {
return {};
},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped lang="scss">
// import
.left-side {
background: rgba(243, 54, 145, 0.166);
height: 4320px;
width: 3840px;
}
</style>