Display extra notifications on notifications column

This commit is contained in:
tusooa 2023-08-13 23:57:34 -04:00
commit 0d6a9e8a64
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51
5 changed files with 67 additions and 2 deletions

View file

@ -0,0 +1,9 @@
import { mapGetters } from 'vuex'
const ExtraNotifications = {
computed: {
...mapGetters(['unreadChatCount', 'unreadAnnouncementCount'])
}
}
export default ExtraNotifications