mirror of
https://github.com/axllent/mailpit.git
synced 2024-12-28 23:06:43 +02:00
48 lines
935 B
Vue
48 lines
935 B
Vue
<script>
|
|
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"
|
|
|
|
export default {
|
|
mixins: [CommonMixins],
|
|
|
|
components: {
|
|
Favicon,
|
|
Notifications,
|
|
EditTags
|
|
},
|
|
|
|
beforeMount() {
|
|
|
|
// load global config
|
|
this.get(this.resolve('/api/v1/webui'), false, function (response) {
|
|
mailbox.uiConfig = response.data
|
|
|
|
if (mailbox.uiConfig.Label) {
|
|
document.title = document.title + ' - ' + mailbox.uiConfig.Label
|
|
} else {
|
|
document.title = document.title + ' - ' + location.hostname
|
|
}
|
|
})
|
|
},
|
|
|
|
watch: {
|
|
$route(to, from) {
|
|
// hide mobile menu on URL change
|
|
this.hideNav()
|
|
}
|
|
},
|
|
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView />
|
|
<Favicon />
|
|
<Notifications />
|
|
<EditTags />
|
|
</template>
|