fix: Fixed the display problem of breadcrumbs on dynamic route page; 🐛

修复:修复动态路由页面的面包屑显示问题;
This commit is contained in:
chenghongxing 2023-04-11 10:28:01 +08:00
parent baae56f715
commit 17e41ce1fc

View File

@ -92,7 +92,7 @@ export default {
let routes = this.$route.matched
const path = this.$route.path
let breadcrumb = []
routes.filter(item => path.includes(item.path))
routes.filter(item => path.includes(item.path) || item.regex.test(path))
.forEach(route => {
const path = route.path.length === 0 ? '/home' : route.path
breadcrumb.push(this.$t(getI18nKey(path)))