关于小程序上canvas移动卡顿的解决方法
在使用canvas做图片裁剪的时候,
偶尔出现卡顿情况,是移动事件向上冒泡导致的,
添加以下代码阻止冒泡行为:
@touchmove.stop.prevent="()=>{}"
<canvas id="canvas" type="2d" @touchstart="canvasTouch" @touchmove="canvasTouch" @touchend="canvasTouch" @touchmove.stop.prevent="()=>{}"></canvas>