huangzhenpeng
Results
1
comments of
huangzhenpeng
实测可行 js ```js const mo = function (e) { e.preventDefault(); }; methods: { stop() { document.body.addEventListener('touchmove', mo, { passive: false }); }, move() { document.body.removeEventListener('touchmove', mo); }, } ``` template...