//安装vue-seamless-scroll插件
npm install vue-seamless-scroll --save
//在mian.js文件中引入
import scroll from 'vue-seamless-scroll'
Vue.use(scroll)
<vue-seamless-scroll
class="list-style"
:data="list"
:steep="1"
scrollDirection="bottom"
:isRoller="true"
:rollerScrollDistance="50"
>
<div
v-for="(item, index) in list"
:key=" + index"
>
<p>{{ item }}</p>
</div>
</vue-seamless-scroll>