From c3d5cdee5c8da1fd54092e39b2b3061974cfb98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Sat, 24 Jan 2026 01:24:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E5=A4=8D=E5=88=9B=E5=BB=BAtab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/router/guard/tab-guard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/router/guard/tab-guard.ts b/web/src/router/guard/tab-guard.ts index bae23e12..932fc8d4 100644 --- a/web/src/router/guard/tab-guard.ts +++ b/web/src/router/guard/tab-guard.ts @@ -7,7 +7,7 @@ export function createTabGuard(router: Router) { router.afterEach((to) => { if (EXCLUDE_TAB.includes(to.path)) return const tabStore = useTabStore() - const { name, fullPath: path } = to + const { name, path } = to const title = String(to.meta?.title) tabStore.addTab({ name: String(name),