初始化仓库

This commit is contained in:
yiqiuyang
2025-09-10 00:13:57 +08:00
commit 17180ec339
417 changed files with 285450 additions and 0 deletions

31
src/views/home.vue Normal file
View File

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