修复:菜单组件 openChang 事件的 bug;🐛 #156

fix: the problem of openChange event in menu.js;
This commit is contained in:
chenghongxing 2020-11-22 17:17:06 +08:00
parent f74d08248e
commit 9e7a03fcd8

View File

@ -200,9 +200,10 @@ export default {
})
},
updateMenu () {
const menuRoutes = this.$route.matched.filter(item => item.path !== '')
const matchedRoutes = this.$route.matched.filter(item => item.path !== '')
this.selectedKeys = this.getSelectedKey(this.$route)
let openKeys = menuRoutes.map(item => item.path)
let openKeys = matchedRoutes.map(item => item.path)
openKeys = openKeys.slice(0, openKeys.length -1)
if (!fastEqual(openKeys, this.sOpenKeys)) {
this.collapsed || this.mode === 'horizontal' ? this.cachedOpenKeys = openKeys : this.sOpenKeys = openKeys
}