mirror of
https://github.com/axllent/mailpit.git
synced 2025-07-03 00:46:58 +02:00
Chore: Apply linting to all JavaScript/Vue files with eslint & prettier
This commit is contained in:
@ -1,42 +1,41 @@
|
||||
<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"
|
||||
import CommonMixins from "./mixins/CommonMixins";
|
||||
import Favicon from "./components/AppFavicon.vue";
|
||||
import AppBadge from "./components/AppBadge.vue";
|
||||
import Notifications from "./components/AppNotifications.vue";
|
||||
import EditTags from "./components/EditTags.vue";
|
||||
import { mailbox } from "./stores/mailbox";
|
||||
|
||||
export default {
|
||||
mixins: [CommonMixins],
|
||||
|
||||
components: {
|
||||
Favicon,
|
||||
AppBadge,
|
||||
Notifications,
|
||||
EditTags
|
||||
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
|
||||
}
|
||||
})
|
||||
},
|
||||
mixins: [CommonMixins],
|
||||
|
||||
watch: {
|
||||
$route(to, from) {
|
||||
// hide mobile menu on URL change
|
||||
this.hideNav()
|
||||
}
|
||||
this.hideNav();
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
beforeMount() {
|
||||
// load global config
|
||||
this.get(this.resolve("/api/v1/webui"), false, (response) => {
|
||||
mailbox.uiConfig = response.data;
|
||||
|
||||
if (mailbox.uiConfig.Label) {
|
||||
document.title = document.title + " - " + mailbox.uiConfig.Label;
|
||||
} else {
|
||||
document.title = document.title + " - " + location.hostname;
|
||||
}
|
||||
});
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
Reference in New Issue
Block a user