可变高度
示例
源码
vue
<template>
<div class="main">
<div style="padding: 10px 0">
<span>Total: {{ list.length }} </span>
<span> </span>
<span>RenderBegin: {{ reactiveData.renderBegin }} </span>
<span> </span>
<span>RenderEnd: {{ reactiveData.renderEnd }} </span>
</div>
<!-- demo -->
<!-- important: must set a height for Container or VirtList -->
<!-- important: must set itemKey and keep id is unique -->
<div class="demo-dynamic" style="width: 100%; height: 500px">
<VirtList
:buffer="5"
ref="virtListRef"
:list="list"
itemKey="id"
:minSize="20"
>
<template #default="{ itemData, index }">
<Item :itemData="itemData" :index="index" />
</template>
</VirtList>
</div>
</div>
</template>
<script lang="ts">
import { VirtList } from 'vue-virt-list';
import { getList } from '../utils/common';
import Item from './Item.vue';
export default {
name: 'DemoEditable',
components: {
VirtList,
Item,
},
data() {
return {
list: [] as any[],
reactiveData: {
renderBegin: 0,
renderEnd: 0,
},
};
},
mounted() {
this.reactiveData = (this.$refs.virtListRef as any).reactiveData;
this.list = getList(200);
},
};
</script>
<style lang="scss" scoped>
.demo-dynamic {
background-color: var(--vp-sidebar-bg-color);
border: 1px solid var(--vp-c-border);
overflow: hidden;
}
</style>