Browse Source

Merge pull request #126 from xiaoxian521/fix/tag

fix(tag): the route is not normally closed and the close icon is repeated
啝裳 3 năm trước cách đây
mục cha
commit
9d45e80856
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/layout/components/tag/index.vue

+ 2 - 1
src/layout/components/tag/index.vue

@@ -64,6 +64,7 @@ const dynamicTagView = () => {
 };
 
 watch([route], () => {
+  activeIndex.value = -1;
   dynamicTagView();
 });
 
@@ -591,7 +592,7 @@ onBeforeMount(() => {
               (index === activeIndex && index !== 0)
             "
             class="el-icon-close"
-            @click="deleteMenu(item)"
+            @click.stop="deleteMenu(item)"
           >
             <CloseBold />
           </el-icon>