[Vuejs]-How to make touchend event trigger on Vue without touchstart?

0👍

Turns out that it’s not a vue-related issue, it’s just my inexperience of programming touch.
I needed to add a different handler for the touch events, and call preventDefault() before using the same code as for the mouse events.

function touchstart(e)
{
  e.preventDefault();
  mousedown();
}

Leave a comment