mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2025-05-19 10:27:56 +00:00
14 lines
388 B
Vue
14 lines
388 B
Vue
<template>
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<script setup lang="tsx">
|
|
//屏蔽右键菜单
|
|
document.addEventListener("contextmenu", (e: MouseEvent) => {
|
|
const el = (e.target as HTMLElement);
|
|
if (import.meta.env.PROD && !el.classList.contains("el-input__inner") && !el.classList.contains("el-textarea__inner")) { // 所有输入框不禁用右键
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
</script>
|