I am trying to implement a solution which allows to attach 3 different handlers to an element, but none should trigger the others.
Using https://v2.vuejs.org/v2/guide/events.html as reference
<div @click.ctrl="methodA" @click="methodB" @contextmenu.ctrl="methodC"></div>
I've tried using .stop modifier randomly on each but I am unable to prevent methodA to also trigger methodB when I click. What would be the right way/modifiers to use or would the order I attach the handlers matter?