0 votes
in VueJS by
What are the supported System Modifier Keys in VueJS?

1 Answer

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

.ctrl

.alt

.shift

.meta

Lets take an example of control modifier with click event,

<!-- Ctrl + Click -->

<div @click.ctrl="doSomething">Do something</div>

Related questions

0 votes
asked Sep 6, 2023 in VueJS by DavidAnderson
...