screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> </head> <body> <div id="app"> <h2>Vue Js window.close() Method</h2> <button @click="closeWindow">Close</button> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return {} }, methods: { closeWindow() { if (confirm("Are you sure you want to close the window?")) { window.parent.close(); } } } }).mount('#app') </script> </body> </html>