<view @touchmove.prevent="dosomethingFunc"></view>这样使用事件修饰符是可以阻止默认滚动事件的,
<template>
<view @touchmove="touchmove">
</view>
</template>
methods: {
touchmove(event) {
event.preventDefault();
}
}
这样写event.preventDefault()就不生效,这是什么原因啊?
2***@qq.com
那如何在ios下让touch事件生效呢?
2021-03-18 16:04