akkoma-fe/src/components/global_notice_list/global_notice_list.js

20 lines
407 B
JavaScript

import { library } from '@fortawesome/fontawesome-svg-core'
import { faTimes } from '@fortawesome/free-solid-svg-icons'
library.add(faTimes)
const GlobalNoticeList = {
computed: {
notices() {
return this.$store.state.interface.globalNotices
}
},
methods: {
closeNotice(notice) {
this.$store.dispatch('removeGlobalNotice', notice)
}
}
}
export default GlobalNoticeList