This commit is contained in:
yiqiuyang
2025-09-10 00:24:53 +08:00
parent cc70e75a93
commit 80f9714845
3 changed files with 28 additions and 10 deletions

View File

@ -1,9 +1,30 @@
<template>
<div id="app">
<Header id="header" />
<router-view />
</div>
</template>
<script>
import Header from "@/views/header/index.vue";
export default {
name: "",
components: {
Header,
},
data() {
return {};
},
mounted() {},
methods: {},
};
</script>
<style lang="scss">
@import "@/assets/scss/index.scss";
#header {
width: 100%;
height: 74px;
}
</style>