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