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)))