sh_real_name_system_web/src/App.vue

39 lines
866 B
Vue

<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from '@/components/ThemePicker'
import { mapActions } from 'vuex'
import { get } from '@/utils/config'
// import AlertNotification from "@/views/warning/AlertNotification.vue";
export default {
name: 'App',
components: { ThemePicker },
created() {
get()
},
metaInfo() {
return {
title:
this.$store.state.settings.dynamicTitle &&
this.$store.state.settings.title,
titleTemplate: (title) => {
return title
? `${title} - ${process.env.VUE_APP_TITLE}`
: process.env.VUE_APP_TITLE
},
}
},
}
</script>
<style scoped>
#app .theme-picker {
display: none;
}
</style>