2022-03-17 16:59:10 +00:00
|
|
|
import Announcement from '../announcement/announcement.vue'
|
|
|
|
|
|
|
|
const AnnouncementsPage = {
|
|
|
|
components: {
|
|
|
|
Announcement
|
|
|
|
},
|
2022-03-17 18:01:45 +00:00
|
|
|
mounted () {
|
|
|
|
this.$store.dispatch('fetchAnnouncements')
|
|
|
|
},
|
2022-03-17 16:59:10 +00:00
|
|
|
computed: {
|
|
|
|
announcements () {
|
2022-03-17 18:01:45 +00:00
|
|
|
return this.$store.state.announcements.announcements
|
2022-03-17 16:59:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AnnouncementsPage
|