v-click-outside
v-click-outside copied to clipboard
Detect right-click
trafficstars
In some parts of my application I have some menus that are opened through context menu using the right mouse button.
Is there any way for the plugin to work with the right button?

I am currently using this plugin to handle context menus: https://github.com/rawilk/vue-context
I'm also having issues with this.
for your information: you can detect it with set the event for contextmenu (right click)
{
handler: this.handler,
events: [ 'click', 'contextmenu' ],
}