vue—ul.li列表滚动
直接上干货
安装插件
npm install vue-seamless-scroll -s
引入插件
import vueSeamlessScroll from 'vue-seamless-scroll'
引用插件
components: {
vueSeamlessScroll
},
使用插件
<vue-seamless-scroll :data="CardPartsStatisticsList" class="seamless-warp" :class-option="classOption">
<ul>
<li class="DataList_top" v-for="(item,index) in CardPartsStatisticsList" :key="index" v-if="index < 6">
<div class="DataList_left">{{index+1}}</div>
<div class="DataList_left">{{item.itemname}}</div>
<div class="DataList_left">{{item.number}}</div>
</li>
</ul>
</vue-seamless-scroll>
码来

干净利索,解决脱发。
本文详细介绍如何在Vue项目中使用vue-seamless-scroll插件实现列表无缝滚动效果。从安装到引用,再到具体代码实现,步骤清晰,帮助开发者轻松掌握这一实用技巧。
2070

被折叠的 条评论
为什么被折叠?



