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)