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

20 lines
407 B
JavaScript
Raw Normal View History

2020-10-20 18:18:23 +00:00
import { library } from '@fortawesome/fontawesome-svg-core'
2022-12-08 16:48:17 +00:00
import { faTimes } from '@fortawesome/free-solid-svg-icons'
2020-10-20 18:18:23 +00:00
2022-12-08 16:48:17 +00:00
library.add(faTimes)
const GlobalNoticeList = {
computed: {
2022-12-08 16:48:17 +00:00
notices() {
return this.$store.state.interface.globalNotices
}
},
methods: {
2022-12-08 16:48:17 +00:00
closeNotice(notice) {
this.$store.dispatch('removeGlobalNotice', notice)
}
}
}
export default GlobalNoticeList