48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
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 { setToken } from "@/utils/auth";
|
|
|
|
// import AlertNotification from "@/views/warning/AlertNotification.vue";
|
|
|
|
export default {
|
|
name: "App",
|
|
components: { ThemePicker },
|
|
created() {
|
|
get();
|
|
const originHref = window.location.href;
|
|
console.log(originHref, "originHref----");
|
|
if (originHref.indexOf("token") !== -1) {
|
|
const token = originHref.split("token");
|
|
setToken(token[1].slice(1));
|
|
this.$router.push({ path: "/" });
|
|
}
|
|
},
|
|
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>
|