mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: problem that the menu item can't be activated when the route changes; 🐛
修复:路由切换时,菜单项无法激活的问题;
This commit is contained in:
parent
431c78ff26
commit
1ba8f20b76
@ -175,9 +175,7 @@ export default {
|
||||
updateMenu () {
|
||||
const menuRoutes = this.$route.matched.filter(item => item.path !== '')
|
||||
const route = menuRoutes.pop()
|
||||
if(this.selectedKeys.length === 0 || route.meta.invisible) {
|
||||
this.selectedKeys = [this.getSelectedKey(route)]
|
||||
}
|
||||
this.selectedKeys = [this.getSelectedKey(route)]
|
||||
let openKeys = menuRoutes.map(item => item.path)
|
||||
if (!fastEqual(openKeys, this.sOpenKeys)) {
|
||||
this.collapsed || this.mode === 'horizontal' ? this.cachedOpenKeys = openKeys : this.sOpenKeys = openKeys
|
||||
@ -201,12 +199,12 @@ export default {
|
||||
openKeys: this.openKeys ? this.openKeys : this.sOpenKeys
|
||||
},
|
||||
on: {
|
||||
select: (obj) => {
|
||||
this.selectedKeys = obj.selectedKeys
|
||||
this.$emit('select', obj)
|
||||
},
|
||||
'update:openKeys': (val) => {
|
||||
this.sOpenKeys = val
|
||||
},
|
||||
click: (obj) => {
|
||||
obj.selectedKeys = [obj.key]
|
||||
this.$emit('select', obj)
|
||||
}
|
||||
}
|
||||
}, this.renderMenu(h, this.options)
|
||||
|
Loading…
x
Reference in New Issue
Block a user