FrontendDeveloper.in

Vue.js question detail

What are the supported Mouse Button Modifiers?

Vue supports below mouse button modifiers

  1. .left
  2. .right
  3. .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"
/>
Back to all Vue.js questions
Get LinkedIn Premium at Rs 399