noticeList.vue
951 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
<template>
<div class = "noticeList">
<ul>
<li v-for = "notice in noticeList" :key="notice.date">
{{notice.title}}
<br>
{{notice.date}}
</li>
</ul>
</div>
</template>
<script>
import axios from 'axios'
export default {
el: '.noticeList',
name: 'noticeList',
data () {
return {
noticeList: []
}
},
components: {
},
created () {
this.fetchNoticeList()
},
methods: {
fetchNoticeList () {
axios
.post('/api/fetchNoticeList', {})
.then((noticeList) => {
console.log(noticeList.data)
this.noticeList = noticeList.data
})
}
}
}
</script>
<style>
.imfoList{
width: 800px;
background: grey;
}
ul{
display: flex;
flex-direction: column;
margin: 0 auto 10px auto;
}
li{
margin-bottom:10px;
}
</style>