IOS封装的H5移动端页面底部小黑条
ios封装的web端应用, 滚动到底部后还能继续朝下滚动,出现空白通过监听 touchmove,让需要滑动的地方滑动,不需要滑动的地方禁止滑动。App.vue页面
created() {
document.body.addEventListener(
"touchmove",
(e) => {
if (e._isScroller) return;
e.preventDefault();
},
{
passive: false,
}...