From c44d001df698bd8cf507854abbba2970e9bb44b3 Mon Sep 17 00:00:00 2001 From: kaisawind Date: Fri, 1 Mar 2019 18:44:37 +0800 Subject: [PATCH] fix[TagsView]: fixed refresh affixed-tag bug (#1653) --- src/views/layout/components/TagsView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/layout/components/TagsView.vue b/src/views/layout/components/TagsView.vue index cfac9c7d..7b7be8f7 100644 --- a/src/views/layout/components/TagsView.vue +++ b/src/views/layout/components/TagsView.vue @@ -76,6 +76,7 @@ export default { routes.forEach(route => { if (route.meta && route.meta.affix) { tags.push({ + fullPath: path.resolve(basePath, route.path), path: path.resolve(basePath, route.path), name: route.name, meta: { ...route.meta }