We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37f66c8 commit b0fc3a9Copy full SHA for b0fc3a9
src/layouts/tabs/TabsHead.vue
@@ -95,7 +95,8 @@
95
this.$emit('contextmenu', pageKey, e)
96
},
97
pageName(page) {
98
- const custom = this.customTitles.find(item => item.path === page.fullPath)
+ const pagePath = page.fullPath.split('?')[0]
99
+ const custom = this.customTitles.find(item => item.path === pagePath)
100
return (custom && custom.title) || page.title || this.$t(getI18nKey(page.keyPath))
101
}
102
0 commit comments