tangbc / vue-virtual-scroll-list

⚡️A vue component support big amount data list with high render performance and efficient.
https://tangbc.github.io/vue-virtual-scroll-list
MIT License
4.37k stars 592 forks source link

低版本浏览器兼容问题 #417

Open HouXuelin112 opened 1 year ago

HouXuelin112 commented 1 year ago

https://github.com/tangbc/vue-virtual-scroll-list/blob/a4123b7a311d28c70e819812927285e92a43cd64/src/item.js#L26 低版本浏览器没有ResizeObserver这个接口,可能this.resizeObserver为空导致报错

是不是可以考虑修改为 this.resizeObserver ? this.resizeObserver.observe(this.$el) : this.dispatchSizeChange()

tsai996 commented 11 months ago

把浏览器版本发出来