document.addEventListener('touchmove', this.preventTouchMove, false)
preventTouchMove(e) {
e.stopPropagation()
e.preventDefault()
}
document.removeEventListener('touchmove', this.preventTouchMove, false)
document.addEventListener('touchmove', this.preventTouchMove, false)