2025年01月09日 建站教程
vue开发如何禁用ios页面滑动从而避免小黑框的出现,下面web建站小编给大家简单介绍一下!
export default { mounted() { document.body.addEventListener('touchmove', (e) => { e.preventDefault(); }, { passive: false }); } }
本文链接:http://so.lmcjl.com/news/21015/