vue中禁止ios頁面滾動的橡皮筋效果(移動端)

單純解決橡皮筋效果,能夠將body的touchmove事件禁止vue

//App.vue

mounted () {
	document.body.addEventListener('touchmove', function (e) {
		e.preventDefault() // 阻止默認的處理方式(阻止下拉滑動的效果)
	}, {passive: false}) // passive 參數不能省略,用來兼容ios和android
}
相關文章
相關標籤/搜索