当前位置: 代码迷 >> 综合 >> better-scroll 使用
  详细解决方案

better-scroll 使用

热度:20   发布时间:2024-02-07 08:36:44.0

ustbhuangyi / better-scroll

npm install better-scroll --save

然后项目中导入

import BScroll from "better-scroll"

然后使用

html:<div class="wrapper"><ul class=content></ul></div>

.wrapper{

height:200px;

overflow:hidden

}

mounted() {this.wrapper = new BScroll(document.querySelector(".wrapper"),{});

这样就可以了