1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-07-03 00:46:58 +02:00

Feature: Display unread count in app badge (#485)

* Display unread count in app badge

* Rate limit app badge updates
This commit is contained in:
Matt Currie
2025-04-30 17:34:46 +12:00
committed by GitHub
parent 87c67e1b1f
commit 05375fed7a
2 changed files with 62 additions and 0 deletions

View File

@ -1,6 +1,7 @@
<script>
import CommonMixins from './mixins/CommonMixins'
import Favicon from './components/Favicon.vue'
import AppBadge from './components/AppBadge.vue'
import Notifications from './components/Notifications.vue'
import EditTags from './components/EditTags.vue'
import { mailbox } from "./stores/mailbox"
@ -10,6 +11,7 @@ export default {
components: {
Favicon,
AppBadge,
Notifications,
EditTags
},
@ -40,6 +42,7 @@ export default {
<template>
<RouterView />
<Favicon />
<AppBadge />
<Notifications />
<EditTags />
</template>