Skip to content

Commit 194dc90

Browse files
committed
初始化部件
1 parent 00b3bf0 commit 194dc90

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

src/view/download.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
<template>
22
<navbar_vue />
3+
<main class="main">
4+
<section></section>
5+
</main>
6+
<footer_vue />
37
</template>
48
<style scoped>
9+
.main{
10+
section{
11+
background-color: #000000;
512
13+
&:nth-child(1){
14+
padding-top: 80px;
15+
height: 100dvh;
16+
}
17+
}
18+
}
619
</style>
720
<script>
821
import navbar_vue from "../components/navbar.vue"
22+
import footer_vue from "../components/footer.vue"
923
1024
export default{
1125
name:"downlaod",
1226
components: {
1327
navbar_vue,
28+
footer_vue
1429
},
1530
data(){
1631
return{

0 commit comments

Comments
 (0)