screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <h3>Vue JS disable right click in the web page</h3> <div id="app" v-on:contextmenu.prevent></div> <script type="module"> const app = Vue.createApp({ mounted() { window.addEventListener("contextmenu", (event) => { event.preventDefault(); }); } }); app.mount('#app'); </script> </body> </html>