Skip to content

Latest commit

 

History

History
71 lines (57 loc) · 2.14 KB

README.md

File metadata and controls

71 lines (57 loc) · 2.14 KB

vue-virt-list 虚拟列表 虚拟滚动列表

Downloads Version License

👉 Advantages

Documentation

To check out docs, visit vue-virt-list

Quick Start

npm install vue-virt-list -S

Options API

<template>
  <div style="width: 500px; height: 400px">
    <VirtList itemKey="id" :list="list" :minSize="20">
      <template #default="{ itemData, index }">
        <div>{{ index }} - {{ itemData.id }} - {{ itemData.text }}</div>
      </template>
    </VirtList>
  </div>
</template>

<script>
  import { VirtList } from 'vue-virt-list';
  export default {
    components: { VirtList },
    data() {
      return {
        list: [{ id: 0, text: 'text' }],
      };
    },
  };
</script>

Composition API

<template>
  <div style="width: 500px; height: 400px">
    <VirtList itemKey="id" :list="list" :minSize="20">
      <template #default="{ itemData, index }">
        <div>{{ index }} - {{ itemData.id }} - {{ itemData.text }}</div>
      </template>
    </VirtList>
  </div>
</template>

<script setup lang="ts">
  import { ref, shallowRef } from 'vue';
  import { VirtList } from 'vue-virt-list';
  const list = ref([{ id: 0, text: 'text' }]);

  // 大数据建议使用 shallowRef,自行使用renderKey控制响应式,具体参考demo文档:
  // https://keno-lee.github.io/vue-virt-list/examples/huge-data/
  // const list = shallowRef([{ id: 0, text: 'text' }])
</script>