diff --git a/components/menu/src/SubMenu.vue b/components/menu/src/SubMenu.vue index b9140a00b..aef6bc909 100644 --- a/components/menu/src/SubMenu.vue +++ b/components/menu/src/SubMenu.vue @@ -55,11 +55,15 @@ export default { } }, mounted () { - this.handleUpdated() + this.$nextTick(() => { + this.handleUpdated() + }) }, updated () { - this.handleUpdated() + this.$nextTick(() => { + this.handleUpdated() + }) }, beforeDestroy () {