From 808c4d0cdfb4076e43a0dbc23d7e9070860402ce Mon Sep 17 00:00:00 2001 From: chansee97 Date: Wed, 12 Jun 2024 15:41:05 +0800 Subject: [PATCH] fix: check route redirect target --- src/store/app/index.ts | 1 - src/store/router/helper.ts | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/app/index.ts b/src/store/app/index.ts index f73027c..39e52c3 100644 --- a/src/store/app/index.ts +++ b/src/store/app/index.ts @@ -60,7 +60,6 @@ export const useAppStore = defineStore('app-store', { this.loadFlag = true this.showLogo = true this.showTabs = true - this.showLogo = true this.showFooter = true this.showBreadcrumb = true this.showBreadcrumbIcon = true diff --git a/src/store/router/helper.ts b/src/store/router/helper.ts index 35ec73f..e76d3ea 100644 --- a/src/store/router/helper.ts +++ b/src/store/router/helper.ts @@ -81,7 +81,8 @@ function setRedirect(routes: AppRoute.Route[]) { if (orderChilds.length > 0) target = min(orderChilds, i => i.meta.order!) as AppRoute.Route - route.redirect = target.path + if (target) + route.redirect = target.path } setRedirect(route.children)