From 17e41ce1fc1537a90a48b0d0f408f49403faf31c Mon Sep 17 00:00:00 2001 From: chenghongxing <1126263215@qq.com> Date: Tue, 11 Apr 2023 10:28:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Fixed=20the=20display=20problem=20of=20b?= =?UTF-8?q?readcrumbs=20on=20dynamic=20route=20page;=20:bug:=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=EF=BC=9A=E4=BF=AE=E5=A4=8D=E5=8A=A8=E6=80=81=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E9=A1=B5=E9=9D=A2=E7=9A=84=E9=9D=A2=E5=8C=85=E5=B1=91?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/PageLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/PageLayout.vue b/src/layouts/PageLayout.vue index 6ce29a8..6afdb1e 100644 --- a/src/layouts/PageLayout.vue +++ b/src/layouts/PageLayout.vue @@ -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)))