| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- import { updateDocumentTitle } from '@/utils/document-title-util';
- export default {
- name: 'App',
- async created() {
- await this.$store.dispatch('userPage/fetchUserPage');
- // 恢复主题
- this.$store.dispatch('theme/recoverTheme');
- },
- methods: {
- /* 路由切换更新浏览器标题 */
- setDocumentTitle() {
- updateDocumentTitle(
- this.$route,
- (key) => this.$t(key),
- this.$store.state.theme.tabs
- );
- }
- },
- watch: {
- '$i18n.locale'() {
- this.setDocumentTitle();
- },
- $route() {
- this.setDocumentTitle();
- }
- }
- };
- </script>
|