With Vue.js 2, when I add an @click event to an element and try to click something, the event does not fire until I finish my click (press down → up).
How can I trigger an event right after a mouse click?
Example:
<div @click="foo()"> Hello </div>
Ben
source share