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

master
RuoYi 10 months ago
parent ad0c7f5c94
commit 9e1616b075
  1. 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