Netfan
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
3 deletions
-
packages/effects/layouts/src/basic/tabbar/use-tabbar.ts
|
|
|
@ -104,9 +104,10 @@ export function useTabbar() { |
|
|
|
const routes = router.getRoutes(); |
|
|
|
const currentRoute = routes.find((item) => item.path === route.path); |
|
|
|
if (currentRoute) { |
|
|
|
tabbarStore.addTab( |
|
|
|
currentRoute as unknown as RouteLocationNormalizedGeneric, |
|
|
|
); |
|
|
|
tabbarStore.addTab({ |
|
|
|
...route, |
|
|
|
meta: currentRoute.meta, |
|
|
|
} as unknown as RouteLocationNormalizedGeneric); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ immediate: true }, |
|
|
|
|