Browse Source

优化控制台提示路由重复问题

master
RuoYi 2 years ago
parent
commit
9e1616b075
  1. 4
      src/layout/components/Sidebar/SidebarItem.vue

4
src/layout/components/Sidebar/SidebarItem.vue

@ -16,8 +16,8 @@
</template>
<sidebar-item
v-for="child in item.children"
:key="child.path"
v-for="(child, index) in item.children"
:key="child.path + index"
:is-nest="true"
:item="child"
:base-path="resolvePath(child.path)"

Loading…
Cancel
Save