Skip to content

Commit

Permalink
fix: reload page warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ziming.tang committed Feb 23, 2023
1 parent aa90e0a commit 74334de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/layout/components/Header/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
</div>
<!-- 面包屑 -->
<n-breadcrumb v-if="crumbsSetting.show">
<template v-for="routeItem in breadcrumbList" :key="routeItem.name">
<template
v-for="routeItem in breadcrumbList"
:key="routeItem.name === 'Redirect' ? void 0 : routeItem.name"
>
<n-breadcrumb-item v-if="routeItem.meta.title">
<n-dropdown
v-if="routeItem.children.length"
Expand Down

0 comments on commit 74334de

Please sign in to comment.