Vue.js question detail
What are the supported Mouse Button Modifiers?
Vue supports below mouse button modifiers
- .left
- .right
- .middle
For example, the usage of .right modifier as below
<button
v-if="button === 'right'"
v-on:mousedown.right="increment"
v-on:mousedown.left="decrement"
/>