mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 10:58:25 +08:00
fix(breadcrumb): 修复多层级路由指向错误(#749)
This commit is contained in:
parent
b5d624cd80
commit
257d8f90b8
|
@ -27,7 +27,7 @@ const crumbs = computed(() => {
|
|||
|
||||
breadcrumbArray.push({
|
||||
path,
|
||||
to: breadcrumbArray[idx - 1] ? `/${breadcrumbArray[idx - 1].path}/${path}` : `/${path}`,
|
||||
to: breadcrumbArray[idx - 1] ? `${breadcrumbArray[idx - 1].to}/${path}` : `/${path}`,
|
||||
title: route.matched[idx]?.meta?.title ?? path,
|
||||
});
|
||||
return breadcrumbArray;
|
||||
|
|
Loading…
Reference in New Issue
Block a user