From 67b11f04fc76c5629885f3aa65bf3f498680f937 Mon Sep 17 00:00:00 2001 From: zclzone Date: Mon, 14 Nov 2022 18:29:41 +0800 Subject: [PATCH] fix: fullPath --- src/layout/components/tags/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/components/tags/index.vue b/src/layout/components/tags/index.vue index baf60db..17c9cdf 100644 --- a/src/layout/components/tags/index.vue +++ b/src/layout/components/tags/index.vue @@ -41,7 +41,7 @@ const contextMenuOption = reactive({ watch( () => route.path, () => { - const { name, path } = route + const { name, fullPath: path } = route const title = route.meta?.title tagsStore.addTag({ name, path, title }) },