1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-06-15 00:05:15 +02:00

Feature: Add ability to rename and delete tags globally

This commit is contained in:
Ralph Slooten
2024-06-29 17:12:56 +12:00
parent 0dca8df29c
commit 0c377b9616
14 changed files with 438 additions and 23 deletions

View File

@ -2,6 +2,7 @@
import CommonMixins from './mixins/CommonMixins'
import Favicon from './components/Favicon.vue'
import Notifications from './components/Notifications.vue'
import EditTags from './components/EditTags.vue'
import { RouterView } from 'vue-router'
import { mailbox } from "./stores/mailbox"
@ -11,6 +12,7 @@ export default {
components: {
Favicon,
Notifications,
EditTags
},
beforeMount() {
@ -41,4 +43,5 @@ export default {
<RouterView />
<Favicon />
<Notifications />
<EditTags />
</template>