可变窗口大小
示例
源码
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>
<div class="demo-resize" style="resize: auto">
<VirtList
ref="virtListRef"
:buffer="2"
:list="list"
itemKey="id"
:minSize="40"
>
<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';
import Operate from '../components/OperateGroup.vue';
export default {
name: 'DemoOperate',
components: {
Item,
VirtList,
Operate,
},
data() {
return {
visible: true,
list: [] as any[],
virtListRef: null as typeof VirtList | null,
reactiveData: {
renderBegin: 0,
renderEnd: 0,
},
};
},
mounted() {
this.virtListRef = this.$refs.virtListRef as typeof VirtList;
this.reactiveData = (this.$refs.virtListRef as any).reactiveData;
this.list = getList(2000);
},
};
</script>
<style lang="scss" scoped>
.demo-resize {
width: 100%;
height: 500px;
background-color: var(--vp-sidebar-bg-color);
border: 1px solid var(--vp-c-border);
overflow: hidden;
}
</style>