From 1ba8f20b766cf7383476929e1cecc7d210ea992a Mon Sep 17 00:00:00 2001 From: chenghongxing <1126263215@qq.com> Date: Wed, 26 Aug 2020 17:29:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20problem=20that=20the=20menu=20item=20can?= =?UTF-8?q?'t=20be=20activated=20when=20the=20route=20changes;=20:bug:=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9A=E8=B7=AF=E7=94=B1=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E8=8F=9C=E5=8D=95=E9=A1=B9=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=BF=80=E6=B4=BB=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu/menu.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/components/menu/menu.js b/src/components/menu/menu.js index ddab46e..9f6dbc2 100644 --- a/src/components/menu/menu.js +++ b/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)