-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.vue
More file actions
49 lines (44 loc) · 1.04 KB
/
App.vue
File metadata and controls
49 lines (44 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<header>
<Header />
</header>
<main class="container flex flex-col-reverse md:flex-row items-center px-1 mx-auto mt-1 space-y-0 md:space-y-0">
<aside class="flex flex-col mb-32 space-y-1 md:w-1/2">
<TreeView />
</aside>
<article class="flex flex-col mb-32 space-y-12 md:w-1/2">
<router-view></router-view>
</article>
</main>
<footer>
<Footer />
</footer>
</template>
<script>
import TreeView from './components/TreeView.vue';
import Footer from './components/layouts/Footer.vue';
import Header from './components/layouts/Header.vue';
export default {
components: {
TreeView,
Footer,
Header
}
};
</script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Acme&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
color: black;
background: white;
padding: 20px;
}
</style>