<button @contextmenu="handler($event)">r-click</button> methods : { handler: function(e) { //do stuff e.preventDefault(); } }
<button @contextmenu.prevent="handler">r-click</button>