VinceG / vue-click-away

Vue 3.0 Compatible Click Away Directive
MIT License
108 stars 14 forks source link

Support right click #20

Open Jazcash opened 2 years ago

Jazcash commented 2 years ago

This is working great out of the box for me, but I need to use it with right click instead of left.

Would you consider adding support for a second directive, perhaps something like v-right-click-away?

I believe this works for it:

const clickEventType = document.ontouchstart !== null ? "contextmenu" : "touchstart";