Browse Source
fix: demo nested menu path (#5667)
* 修复演示的嵌套菜单path配置导致的面包屑跳转问题
pull/5669/head
Netfan
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
playground/src/router/routes/modules/demos.ts
|
|
|
@ -532,7 +532,7 @@ const routes: RouteRecordRaw[] = [ |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
name: 'Menu31Demo', |
|
|
|
path: 'menu3-1', |
|
|
|
path: '/demos/nested/menu3/menu3-1', |
|
|
|
component: () => import('#/views/demos/nested/menu-3-1.vue'), |
|
|
|
meta: { |
|
|
|
icon: 'ic:round-menu', |
|
|
|
@ -542,7 +542,7 @@ const routes: RouteRecordRaw[] = [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'Menu32Demo', |
|
|
|
path: 'menu3-2', |
|
|
|
path: '/demos/nested/menu3/menu3-2', |
|
|
|
meta: { |
|
|
|
icon: 'ic:round-menu', |
|
|
|
title: $t('demos.nested.menu3_2'), |
|
|
|
|