From 3d0d2f1de2a3727c7693fdbe7f3630a659ac3ec0 Mon Sep 17 00:00:00 2001 From: DevilMCry1 <838115736@qq.com> Date: Thu, 2 Jul 2020 17:21:36 +0800 Subject: [PATCH] modify closeAllTags function --- src/layout/components/TagsView/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue index d2a56e70..d54ec776 100644 --- a/src/layout/components/TagsView/index.vue +++ b/src/layout/components/TagsView/index.vue @@ -149,7 +149,7 @@ export default { }, closeAllTags(view) { this.$store.dispatch('tagsView/delAllViews').then(({ visitedViews }) => { - if (this.affixTags.some(tag => tag.path === view.path)) { + if (this.affixTags.some(tag => tag.path === this.$route.path)) { return } this.toLastView(visitedViews, view)