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),