Theme:
Ui3nVirtualScroll
Virtual scroll component for efficiently rendering large lists by only rendering visible items.
Props
| Name | Type | Default | Description |
|---|---|---|---|
items* | T[] | — | List of items to render |
minChildHeight* | number | 16 | Minimum height of child element |
renderAhead | number | undefined | 20 | Number of items to render ahead |
Slots
| Slot Name | Scope Props (v-slot) | Description |
|---|---|---|
#item | { value: T; index: number; } | Item slot |
Usage Examples
Simple virtual scroll
Simple virtual scroll
Basic virtual scroll with large list
Virtual scroll with custom rendering
Virtual scroll with custom rendering
Virtual scroll with custom item template