vue阻止右键默认行为
Posted taohuaya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()">
以上是关于vue阻止右键默认行为的主要内容,如果未能解决你的问题,请参考以下文章