其他分享
首页 > 其他分享> > vue禁止右键 禁止F12 代码

vue禁止右键 禁止F12 代码

作者:互联网

  created() {     this.$nextTick(() => {       // 禁止右键       document.oncontextmenu = new Function("event.returnValue=false");       // 禁止F12       document.onkeydown = new Function("event.returnValue=false");     });   }, 单个页面   想要所有页面试试 app.vue

标签:禁止,false,vue,右键,returnValue,F12
来源: https://www.cnblogs.com/yangcaicai/p/15776629.html