虚拟列表 vue-virtual-scroller 的使用
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
npm 详情:vue-virtual-scroller - npm (npmjs.com)
这里我使用的是RecycleScroller。
App.vue
<template>
<RecycleScroller
class="scroller"
:items="items"
:item-size="54"
v-slot="{ item }"
>
<list-item :item="item"></list-item>
</RecycleScroller>
</template>
<script>
import {RecycleScroller} from 'vue-virtual-scroller'
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
import ListItem from "@/components/ListItem.vue";
// items 是一个对象数组, item 传递给 ListItem 组件 是包含了对象数组的对象
var items = []
for (let i = 0; i < 10000; i++) {
items.push({
id: i + 1,
name: 'User ' + (i + 1),
})
}
export default {
components: {
ListItem,
RecycleScroller
},
data() {
return {
items: items
}
}
}
</script>
<style scoped>
.scroller {
height: 50vh;
width: 50vw;
background-color: #f5f5f5;
padding: 10px;
}
</style>
ListItem.vue
<script>
export default {
props: {
item: Object
}
}
</script>
<template>
<div class="list-item">
<span>id{{item.id}}</span>
<span>name{{item.name}}</span>
<span>age{{item.count}}</span>
</div>
</template>
<style scoped>
.list-item {
text-align: center;
height: 54px;
padding: 1em;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(3, 1fr);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
</style>
GitHub 加速计划 / vu / vue
207.55 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:3 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 5 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献17条内容
所有评论(0)