mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
fix: check route redirect target
This commit is contained in:
parent
6449845ab6
commit
808c4d0cdf
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user