Skip to content

lhlyu/vue-virtual-waterfall

Repository files navigation

vue-virtual-waterfall

A Vue 3 virtual waterfall component

npm

中文文档

Example

Usage

pnpm add @lhlyu/vue-virtual-waterfall

  • Local import
import { VirtualWaterfall } from '@lhlyu/vue-virtual-waterfall'
  • Global import
import VueVirtualWaterfall from '@lhlyu/vue-virtual-waterfall'

app.use(VueVirtualWaterfall)
  • Usage
<template>
    <VirtualWaterfall :items="items" :calcItemHeight="calcItemHeight">
        <template #default="{ item }: { item: ItemOption }">
            <div class="card">
                <img :src="item.img" />
            </div>
        </template>
    </VirtualWaterfall>
</template>
  • Nuxt3 Usage

demo

Attention!!!

The VirtualWaterfall component wants to implement a virtual list, and the container that wraps it must indicate a fixed height. The scrolling event can be bound to this container. If this component is hung under the body, the height of the body also needs to be specified. The scrolling event can be bound to the window

Documentation

  • Properties
Field Type Default Description
virtual boolean true Enable virtual list
rowKey string 'id' Key for v-for
gap number 15 Gap between each item
padding number or string 15 or '15px 15px' Container's padding
preloadScreenCount [number, number] [0, 0] Preload screen count [above, below]
itemMinWidth number 220 Minimum width for each item
maxColumnCount number 10 Maximum number of columns
minColumnCount number 2 Minimum number of columns
items any[] [] Data
calcItemHeight (item: any, itemWidth: number) => number (item: any, itemWidth: number) => 250 Method to calculate item height
  • Slots
Event Type Description
default { item: any, index: number } Custom default content
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy