diff options
| author | tusooa <tusooa@kazv.moe> | 2023-08-13 23:57:34 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-08-18 22:25:11 -0400 |
| commit | 0d6a9e8a647be860b10506aecaafb4ff0f10150f (patch) | |
| tree | a0cb51b11e4f8a878df59cbde7b151c4c32ac24b /src/components/extra_notifications/extra_notifications.js | |
| parent | a1641193b5b7c72e919b9848b167bc4d4a40444b (diff) | |
Display extra notifications on notifications column
Diffstat (limited to 'src/components/extra_notifications/extra_notifications.js')
| -rw-r--r-- | src/components/extra_notifications/extra_notifications.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/extra_notifications/extra_notifications.js b/src/components/extra_notifications/extra_notifications.js new file mode 100644 index 00000000..0bf904ba --- /dev/null +++ b/src/components/extra_notifications/extra_notifications.js @@ -0,0 +1,9 @@ +import { mapGetters } from 'vuex' + +const ExtraNotifications = { + computed: { + ...mapGetters(['unreadChatCount', 'unreadAnnouncementCount']) + } +} + +export default ExtraNotifications |
