Skip to content

Commit d389507

Browse files
authoredSep 24, 2024··
fix: useBreadcrumbItems support static meta from dynamic routes (#323)
1 parent 6ca374b commit d389507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/runtime/nuxt/composables/useBreadcrumbItems.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export function useBreadcrumbItems(options: BreadcrumbProps = {}) {
149149
segments.push(...options.append)
150150
return (segments.filter(Boolean) as BreadcrumbItemProps[])
151151
.map((item) => {
152-
const route = routes.find(r => withoutTrailingSlash(r.path) === withoutTrailingSlash(item.to))
152+
const route = router.resolve(item.to)?.matched
153153
const routeMeta = (route?.meta || {}) as RouteMeta & { title?: string, breadcrumbLabel: string }
154154
const routeName = route ? String(route.name || route.path) : (item.to === '/' ? 'index' : 'unknown')
155155
let [name] = routeName.split('___')

0 commit comments

Comments
 (0)
Please sign in to comment.