vue-virtual-scroller icon indicating copy to clipboard operation
vue-virtual-scroller copied to clipboard

Multiple items per rows

Open Akryum opened this issue 7 years ago • 2 comments

TODO: Investigate technical solution and performance impact.

Akryum avatar Mar 26 '18 15:03 Akryum

You can create chunks for your list ex: [1, 2, 3, 4, 5, 6, 7].chunk(3) // in lodash library ) // [[1, 2, 3], [4, 5, 6], [7]] Now you will get [1,2,3] in one item and can loop this in one item row.

dungeongod avatar Jun 21 '19 09:06 dungeongod

You can create chunks for your list ex: [1, 2, 3, 4, 5, 6, 7].chunk(3) // in lodash library ) // [[1, 2, 3], [4, 5, 6], [7]] Now you will get [1,2,3] in one item and can loop this in one item row.

key-field failed.

Shawnyeungcf avatar Aug 25 '22 10:08 Shawnyeungcf

Implemented with the gridItems and itemSecondarySize props

Akryum avatar Oct 15 '22 00:10 Akryum