微信公众号 禁止下拉
methods: {
noPullDown:function(selector){
//禁止页面拖动
document.querySelector('body').addEventListener('touchmove', function (e) {
console.log('禁止下拉出现网页来源信息')
if(!selector) {
e.preventDefault()
} else {
// 如果需要部分区域可以滑动,则需传入需要滑动地方的类名
if (!document.querySelector(selector).contains(e.target)) {
e.preventDefault()
}
}
}, { passive: false })
},
}
mounted(){
this.noPullDown()
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。