App.vue
960 Bytes
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
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
<div id="app">
<siteHeader></siteHeader>
<div class = "body">
<setting></setting>
<noticeList></noticeList>
</div>
</div>
</template>
<script>
import siteHeader from './components/header'
import loginMenu from './components/loginMenu'
import noticeList from './components/noticeList'
export default {
name: 'App',
components: {
'siteHeader': siteHeader,
'loginMenu': loginMenu,
'noticeList': noticeList
}
}
</script>
<style>
@font-face{
font-family: 'JejuGothic';
src: url('assets/JejuGothic.ttf');
}
@font-face{
font-family: 'BIGJOHN';
src: url('assets/BIGJOHN.otf');
}
body{
font-family: sans-serif;
margin: 0;
background: #f2f3f5;
}
a{
text-decoration: none;
color: inherit;
}
li{
list-style: none;
}
input{
border: none;
}
button{
border:none;
}
ul{
padding:0;
}
.body{
margin-top:10px;
display: flex;
flex-direction: column;
align-items: center;
}
</style>