perf: [el-menu] only vertical mode has transition (#3200)

This commit is contained in:
kooriookami 2021-09-02 21:08:59 +08:00 committed by GitHub
parent d8487f29a6
commit f03a8fe07e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,7 +374,7 @@ export default defineComponent({
}, },
}, [this.filteredSlot]), directives) }, [this.filteredSlot]), directives)
if (this.collapseTransition) { if (this.collapseTransition && this.mode === 'vertical') {
return h(ElMenuCollapseTransition, () => menu) return h(ElMenuCollapseTransition, () => menu)
} }
return menu return menu