Skip to content

Instantly share code, notes, and snippets.

@Lure5134
Lure5134 / VirtualList.svelte
Last active June 23, 2025 07:00
A virtual list for svelte 5.
<script lang="ts" generics="T">
import { onMount, tick, type Snippet } from "svelte";
const {
items,
height,
itemHeight,
children,
getKey,
}: {