Results 3 comments of niayyy

@linxianxi 如果支持了 horizontal 虚拟滚动会出现一个问题:如果第一次渲染的 cell 高度为 50px,向右滚动,第二次渲染出来的cell 高度为 100px,那么 row 的整体高度会出现变化 50px -> 100px。 例如,修改下 virtual.tsx demo 中的 data: ```typescript const data: RecordType[] = new Array(4 * 10000).fill(null).map((_, index) =>...

> @nia3y 你说的这个高度变化不是垂直方向的虚拟滚动吗?跟水平方向的有什么关系 你可以跑一下 demo: ![image](https://github.com/react-component/table/assets/44686955/80033fdc-3046-4676-aefb-6cbfd71c87cf) ![image](https://github.com/react-component/table/assets/44686955/166b76e4-bae0-4e67-98bc-a4d741584601)

> 这个在直接 dom.offsetWidth 获取就行了 意思是把 dom 通过 ref 暴露出去吗,使用场景是这里:https://github.com/react-component/table/pull/1122/files