vue中使用better-scroll封装scroll组件



.wrapper {
    height: calc(
        100vh - 96px
    ); //切记使用 calc 的时候,里面的 - 左右两边一定要有个空格,快被这个bug搞死了;
    background-color: #fff;
    overflow: hidden;
    margin-top: 46px;
}
 
better-scroll.js官网: https://github.com/ustbhuangyi/better-scroll      中文文档: https://ustbhuangyi.github.io/better-scroll/doc/zh-hans/#better-scroll%20%E6%98%AF%E4%BB%80%E4%B9%88

你可能感兴趣的:(vue中使用better-scroll封装scroll组件)