vue阻止右键默认行为

vue阻止右键默认行为

<!--不阻止右键菜单(浏览器行为),右键执行函数show-->
<input type="button" value="按钮" @contextmenu="show()"> 
<!--阻止右键菜单-->
<input type="button" value="按钮1" @contextmenu.prevent>
<!--阻止右键菜单(浏览器行为),右键执行函数show-->
<input type="button" value="按钮1" @contextmenu.prevent="show1()">
posted @ 2019-06-21 17:44  暗恋桃埖源  阅读(8883)  评论(0编辑  收藏  举报