Browse Source
fix: the route path did not synchronize with the page (#4947)
pull/4660/merge
huangxiaomin
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
12 additions and
0 deletions
-
playground/src/router/routes/modules/demos.ts
|
|
|
@ -156,6 +156,18 @@ const routes: RouteRecordRaw[] = [ |
|
|
|
title: $t('demos.features.hideChildrenInMenu'), |
|
|
|
}, |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
name: 'HideChildrenInMenuDemo', |
|
|
|
path: '', |
|
|
|
component: () => |
|
|
|
import( |
|
|
|
'#/views/demos/features/hide-menu-children/children.vue' |
|
|
|
), |
|
|
|
meta: { |
|
|
|
hideInMenu: true, |
|
|
|
title: $t('demos.features.hideChildrenInMenu'), |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'HideChildrenInMenuChildrenDemo', |
|
|
|
path: '/demos/features/hide-menu-children/children', |
|
|
|
|