Coderclc
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/layouts/default/header/components/Breadcrumb.vue
|
|
|
@ -101,8 +101,8 @@ |
|
|
|
if (!meta) { |
|
|
|
return !!name; |
|
|
|
} |
|
|
|
const { title, hideBreadcrumb } = meta; |
|
|
|
if (!title || hideBreadcrumb) { |
|
|
|
const { title, hideBreadcrumb, hideMenu } = meta; |
|
|
|
if (!title || hideBreadcrumb || hideMenu) { |
|
|
|
return false; |
|
|
|
} |
|
|
|
return true; |
|
|
|
|