vue通过better-scroll实现竖直方向滚动

import BScroll from 'better-scroll'
var bScroll= document.querySelector('.bScroll')

var scroll = new BScroll(bScroll, {
                    click: true,
                    scrollY: true,
                    bounce: {
                        top: true,
                        bottom: true
                    }
                })

你可能感兴趣的:(vue)