diff --git a/examples/components/mainContent.vue b/examples/components/mainContent.vue
index 820eabba..dbc4a2e2 100644
--- a/examples/components/mainContent.vue
+++ b/examples/components/mainContent.vue
@@ -59,11 +59,12 @@ export default {
},
getTabs() {
let {name, query, hash} = this.$route
- let tab = this.tabs.find(e => e.name == this.currentTab)
+ let tab = this.tabs.find(e => e.name == this.currentTab),
+ tabName = [name, query?.id, hash].join("")
if (tab) {
- } else if (name) {
+ } else if (tabName) {
let menu = this.apps.find(e => e.name == name)
- this.tabs.push({name, query, hash, label: menu?.label})
+ this.tabs.push({name: tabName, query, hash, label: menu?.label})
}
},
},
diff --git a/packages/conv/creditScore/scoreFamily/AppScoreFamily.vue b/packages/conv/creditScore/scoreFamily/AppScoreFamily.vue
index 708bebae..a3f99e82 100644
--- a/packages/conv/creditScore/scoreFamily/AppScoreFamily.vue
+++ b/packages/conv/creditScore/scoreFamily/AppScoreFamily.vue
@@ -43,7 +43,6 @@