1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-07 18:25:45 +08:00

Merge 4b6f91b7e05d527ffc16916b9ae3ab56bd4544db into 0caa975ee224074c77540107b1fe076081cdf306

This commit is contained in:
laurent 2022-06-08 09:58:43 +08:00 committed by GitHub
commit fb2401a4a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ export default {
})
}
if (route.children) {
const tempTags = this.filterAffixTags(route.children, route.path)
const tempTags = this.filterAffixTags(route.children, path.resolve(basePath, route.path))
if (tempTags.length >= 1) {
tags = [...tags, ...tempTags]
}

View File

@ -42,7 +42,7 @@ const nestedRouter = {
path: 'menu1-2-2',
component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'),
name: 'Menu1-2-2',
meta: { title: 'Menu 1-2-2' }
meta: { title: 'Menu 1-2-2', affix: true }
}
]
},