vue-virtual-scroller
vue-virtual-scroller copied to clipboard
Is it possible to achieve `virtual grid`?
trafficstars
We have a big table that we want to implement both horizontal and vertical scrolling. The same like react-virtualized grid.
I look through the document, and not sure if it's possible to implement. Cause all the xxScroll seem like to support one direction only?
Thanks
You can get horizontal scrolling using css :
::v-deep .vue-recycle-scroller__item-wrapper { overflow: auto; }
To avoid duplicate vertical scrollbars in certain scenarios:
::v-deep .vue-recycle-scroller__item-wrapper { overflow-x: auto; }
Grid mode is now implemented