Virtual scrolling
Only visible tiles plus a configurable buffer are rendered for smooth infinite feeds.
Build responsive masonry galleries that stay smooth with big data sets.

Vue WF focuses on rendering efficiency for media-heavy grids. It pairs a simple prop-driven API with virtualization so you can keep interaction snappy even when streaming hundreds of photos or cards.
<script setup lang="ts">
import Waterfall from 'vue-wf'
const tmps = Array.from({ length: 100 })
const heights = [50, 100, 200, 300, 400]
const width = 100
const items = tmps.map(() => {
const height = heights[Math.floor(Math.random() * heights.length)]
return {
width,
height,
src: `https://picsum.photos/${width}/${height}?random=${Math.random()}`,
}
})
</script>
<template>
<Waterfall
:wrapper-width="400"
:item-width="width"
:gap="20"
>
<div
v-for="item, i in items"
:key="i"
:style="{
height: `${item.height / item.width * 100}px`,
backgroundImage: `url(${item.src})`,
}"
/>
</Waterfall>
</template>pnpm docs:dev and pnpm docs:build