I have the following code:
<button @click.ctrl="onClick">myButton</button>
const onClick = () => { alert(1111) }
When I run this code in Windows, it is normal work.
But when I run this code in Mac, it is not pop up ‘alert’, and it open browser menu.
How can I modify the code to make it work normally?
I use Vue3, system is “macOS Monterey version 12.6.3”.