element-plus bug记录

177 阅读1分钟

element-plus 使用弹窗组件message时,弹窗关闭时报错,无法关闭,后面代码无法执行

Uncaught (in promise) TypeError: Cannot set properties of null(setting visible)

代码中显示 element message组件methods.ts 中代码报错

vm.exposed.visible.value = false

vm.exposed 为 null,无法找到visible属性

查阅过,为vue3版本和elementplus版本不兼容,文章地址

github.com/element-plus/element-plus/pull/8797

文章提供解决方案为升级vue版本至3.2.32,后将vue版本升级至3.2.38后,仍不能解决

将element-plus版本升级至2.2.16,即可解决,暂未发现问题根源,element-plus升级后,问题报错的代码element有变动过