This commit is contained in:
xingyu4j
2025-05-26 10:50:54 +08:00
34 changed files with 524 additions and 178 deletions

View File

@@ -208,7 +208,7 @@ export const useTabbarStore = defineStore('core-tabbar', {
const keys: string[] = [];
for (const key of closeKeys) {
if (key !== tab.key) {
if (key !== getTabKeyFromTab(tab)) {
const closeTab = this.tabs.find(
(item) => getTabKeyFromTab(item) === key,
);