vue 移动端模拟弹窗时,禁止页面滑动
2019-01-25 本文已影响0人
汶沐
bodyScroll(event) {
event.preventDefault()
},
stopScroll () {
document.body.style.overflow = 'hidden'
document.addEventListener('touchmove', this.bodyScroll, false)
},startScroll () {
document.body.style.overflow = ''// 出现滚动条
document.removeEventListener('touchmove', this.bodyScroll, false)
},