mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
fix: Fixed the display problem of breadcrumbs on dynamic route page; 🐛
修复:修复动态路由页面的面包屑显示问题;
This commit is contained in:
parent
baae56f715
commit
17e41ce1fc
@ -92,7 +92,7 @@ export default {
|
|||||||
let routes = this.$route.matched
|
let routes = this.$route.matched
|
||||||
const path = this.$route.path
|
const path = this.$route.path
|
||||||
let breadcrumb = []
|
let breadcrumb = []
|
||||||
routes.filter(item => path.includes(item.path))
|
routes.filter(item => path.includes(item.path) || item.regex.test(path))
|
||||||
.forEach(route => {
|
.forEach(route => {
|
||||||
const path = route.path.length === 0 ? '/home' : route.path
|
const path = route.path.length === 0 ? '/home' : route.path
|
||||||
breadcrumb.push(this.$t(getI18nKey(path)))
|
breadcrumb.push(this.$t(getI18nKey(path)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user