初始化仓库
This commit is contained in:
31
src/views/home.vue
Normal file
31
src/views/home.vue
Normal 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>
|
||||
Reference in New Issue
Block a user