vue禁止右键 禁止F12 代码

  created() {
    this.$nextTick(() => {
      // 禁止右键
      document.oncontextmenu = new Function("event.returnValue=false");
      // 禁止F12
      document.onkeydown = new Function("event.returnValue=false");
    });
  },
单个页面
 
想要所有页面试试 app.vue
posted @ 2022-01-07 19:41  阳菜  阅读(1054)  评论(0)    收藏  举报