wchbrad / vue-easy-tree

A tree component based on vue2.x that supports a small amount of data or a large amount of data, multiple functions, and virtual scrolling.
MIT License
124 stars 39 forks source link

高度为100%虚拟滚动不生效,需要使用px或者calc(100vh - 10px)转换 #34

Closed Dnxbhhz closed 1 year ago

wchbrad commented 1 year ago

100%不是有效的绝对像素单位,需要使用px或者calc(100vh - 10px)转换。虚拟滚动需要用到绝对单位计算应该展示多少个item等数据

Dnxbhhz commented 1 year ago

100%不是有效的绝对像素单位,需要使用px或者calc(100vh - 10px)转换。虚拟滚动需要用到绝对单位计算应该展示多少个item等数据

改成calc就可以了,谢谢