We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00b3bf0 commit 194dc90Copy full SHA for 194dc90
1 file changed
src/view/download.vue
@@ -1,16 +1,31 @@
1
<template>
2
<navbar_vue />
3
+ <main class="main">
4
+ <section></section>
5
+ </main>
6
+ <footer_vue />
7
</template>
8
<style scoped>
9
+.main{
10
+ section{
11
+ background-color: #000000;
12
13
+ &:nth-child(1){
14
+ padding-top: 80px;
15
+ height: 100dvh;
16
+ }
17
18
+}
19
</style>
20
<script>
21
import navbar_vue from "../components/navbar.vue"
22
+import footer_vue from "../components/footer.vue"
23
24
export default{
25
name:"downlaod",
26
components: {
27
navbar_vue,
28
+ footer_vue
29
},
30
data(){
31
return{
0 commit comments