when the Vue page pops up the mask layer, I want to prevent the page from sliding. When the mask layer ends, the page can slide. I now prohibit sliding, but I can"t remove it.
Click time appears the mask
when there is a time selection, the page is not allowed to slide (valid)
document.body.addEventListener("touchmove", function (e) {
e.preventDefault() // ()
}, {passive: false}) // passive iosandroid
how to solve the problem that the page should be able to swipe again when the time is selected? (invalid)
document.body.addEventListener("touchmove", function (e) {
e.preventDefault() // ()
}, {passive: true}) // passive iosandroid
how to solve this problem?