hilongjw / vue-lazyload

A Vue.js plugin for lazyload your Image or Component in your application.
http://hilongjw.github.io/vue-lazyload/
MIT License
8k stars 867 forks source link

vue 3.5+ 会报错 TypeError: Cannot read properties of null (reading 'getBoundingClientRect') #518

Open sunxi1997 opened 3 weeks ago

sunxi1997 commented 3 weeks ago

image 当 LazyComponent 被卸载后, 内部的回调没有注销, 再次调用时找不到 DOM 元素, 导致程序错误

sunxi1997 commented 3 weeks ago

image

vue@3.5 重构了 computed 逻辑, 在组件 unmounted 后, 模板引用的 ref 是没有值的 image 所以 vm.value.el 在 vue@3.5+ 中是无值的, 无法被正确卸载相关的监听