fix: check route redirect target

This commit is contained in:
chansee97 2024-06-12 15:41:05 +08:00
parent 6449845ab6
commit 808c4d0cdf
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

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