Skip to content

Commit b350098

Browse files
committed
perf: adjust the logic of
1 parent bfac425 commit b350098

File tree

5 files changed

+50
-43
lines changed

5 files changed

+50
-43
lines changed

CHANGELOG.zh_CN.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,18 @@
1212
- 依赖更新
1313
- 文档更新
1414

15+
### ⚡ Performance Improvements
16+
17+
- `setTitle`逻辑调整
18+
1519
### ✨ Refactor
1620

1721
- 独立出`vite-plugin-html`,并修改相关插入 html 的逻辑
1822

1923
### 🐛 Bug Fixes
2024

2125
- 修复热更新时多次注册组件警告问题
26+
- 修复登录后出现登录标签页
2227

2328
## 2.0.0-rc.5 (2020-10-26)
2429

src/router/guard/index.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import type { Router } from 'vue-router';
22

33
import { Modal, notification } from 'ant-design-vue';
44
import { AxiosCanceler } from '/@/utils/http/axios/axiosCancel';
5-
import { createPageTitleGuard } from './pageTitleGuard';
65
import { createProgressGuard } from './progressGuard';
76
import { createPermissionGuard } from './permissionGuard';
87
import { createPageLoadingGuard } from './pageLoadingGuard';
98
import { useSetting } from '/@/hooks/core/useSetting';
109
import { getIsOpenTab, setCurrentTo } from '/@/utils/helper/routeHelper';
10+
import { setTitle } from '/@/utils/browser';
1111

12-
const { projectSetting } = useSetting();
12+
const { projectSetting, globSetting } = useSetting();
1313
export function createGuard(router: Router) {
1414
const { openNProgress, closeMessageOnSwitch, removeAllHttpPending } = projectSetting;
1515
let axiosCanceler: AxiosCanceler | null;
@@ -33,8 +33,16 @@ export function createGuard(router: Router) {
3333
setCurrentTo(to);
3434
return true;
3535
});
36+
37+
router.afterEach((to) => {
38+
// change html title
39+
40+
setTimeout(() => {
41+
setTitle(to.meta.title, globSetting.title);
42+
}, 0);
43+
});
44+
3645
openNProgress && createProgressGuard(router);
3746
createPermissionGuard(router);
38-
createPageTitleGuard(router);
3947
createPageLoadingGuard(router);
4048
}

src/router/guard/pageTitleGuard.ts

-39
This file was deleted.

src/utils/browser.ts

+29
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,32 @@ export function isFirefoxFn() {
7070
export function isOperaFn() {
7171
return type === 'Opera';
7272
}
73+
74+
/**
75+
* set page Title
76+
* @param {*} title :page Title
77+
*/
78+
const setDocumentTitle = (title: string) => {
79+
document.title = title;
80+
const ua = navigator.userAgent;
81+
const regex = /\bMicroMessenger\/([\d.]+)/;
82+
// 兼容
83+
if (regex.test(ua) && /ip(hone|od|ad)/i.test(ua)) {
84+
const i = document.createElement('iframe');
85+
i.src = '/favicon.ico';
86+
i.style.display = 'none';
87+
i.onload = function () {
88+
setTimeout(function () {
89+
i.remove();
90+
}, 9);
91+
};
92+
document.body.appendChild(i);
93+
}
94+
};
95+
96+
export function setTitle(title: string, appTitle?: string) {
97+
if (title) {
98+
const _title = title ? ` ${title}-${appTitle} ` : `${appTitle}`;
99+
setDocumentTitle(_title);
100+
}
101+
}

src/views/demo/feat/tab-params/index.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
<template>
2-
<div class="p-4"> Current Param : {{ params }} </div>
2+
<div class="p-4">
3+
Current Param : {{ params }}
4+
<input />
5+
</div>
36
</template>
47
<script lang="ts">
58
import { computed, defineComponent, unref } from 'vue';
69
import { useRouter } from 'vue-router';
710
export default defineComponent({
11+
name: 'TestTab',
812
setup() {
913
const { currentRoute } = useRouter();
1014
return {

0 commit comments

Comments
 (0)