Browse Source

fix: 兼容路由title为空的情况

xiaoxian521 2 years ago
parent
commit
b6ed8b40d1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/store/modules/multiTags.ts

+ 1 - 0
src/store/modules/multiTags.ts

@@ -47,6 +47,7 @@ export const useMultiTagsStore = defineStore({
           {
             const tagVal = value as multiType;
             if (isUrl(tagVal?.name)) return;
+            if (tagVal?.meta?.title.length === 0) return;
             const tagPath = tagVal?.path;
             // 判断tag是否已存在
             const tagHasExits = this.multiTags.some(tag => {