1.0.8 • Published 7 months ago

@xuemiyang/vue-virtual-list v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

@xuemiyang/vue-virtual-list

Support VUE3 virtual list of tens of millions of data

Install

npm install @xuemiyang/vue-virtual-list

Usage

<script setup lang="ts">
import { ref } from "vue";
import { VirtualList } from "@xuemiyang/vue-virtual-list";
import "@xuemiyang/vue-virtual-list/dist/style.css";

const allList = ref<any[]>([]);

for (let i = 0; i < 10000000; i++) {
  allList.value.push({ title: `title ${i}` });
}
</script>

<template>
  <div>
    <VirtualList
      class="list"
      type="horizontal"
      :item-width="200"
      :item-height="100"
      :row-space="10"
      :column-space="10"
      :repeat-number="0"
      :values="allList"
    >
      <template #default="{ item, index }">
        <div class="item">
          <h2 >{{ item.title }}</h2>
          <h3>{{ index }}</h3>
        </div>
      </template>
    </VirtualList>
  </div>
</template>

<style scoped>
.list {
  width: 500px;
  height: 300px;
}
.list .item {
  background-color: bisque;
}
</style>

Component properties

NameTypeDescription
type'horizontal' | 'vertical'The layout direction of the item
itemWidthnumberitem Width
itemHeightnumberitem Height
rowSpacenumberrow Space
columnSpacenumbercolumn Space
repeatNumbernumberitem Number of duplicates. For example, 4 rows and 3 columns, the direction is horizontal, and the number of repetitions is 4
valuesany[]an array of values

Exposes

NameTypeDescription
scrollTo(row: number, column: number) => voidScroll to the specified item through rows and columns
1.0.8

7 months ago

1.0.7

12 months ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago