fix: problem that the menu item can't be activated when the route changes; 🐛

修复:路由切换时,菜单项无法激活的问题;
master
chenghongxing 5 years ago
parent 431c78ff26
commit 1ba8f20b76
  1. 12
      src/components/menu/menu.js

@ -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…
Cancel
Save