0 votes
in VueJS by

What are the supported System Modifier Keys?

1 Answer

0 votes
by

Vue supports below modifiers to trigger mouse or keyboard event listeners when the corresponding key is pressed,

  1. .ctrl
  2. .alt
  3. .shift
  4. .meta

Lets take an example of control modifier with click event,

<!-- Ctrl + Click -->
<div @click.ctrl="doSomething">Do something</div>
...