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

16 lines
267 B
JavaScript

const GlobalNoticeList = {
computed: {
notices () {
return this.$store.state.interface.globalNotices
}
},
methods: {
closeNotice (notice) {
this.$store.dispatch('removeGlobalNotice', notice)
}
}
}
export default GlobalNoticeList