screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <div id="app"> <button v-on:click="showAlert">Click me</button> </div> <script type="module"> const app = Vue.createApp({ methods: { showAlert() { window.alert('Button clicked!') } } }); app.mount('#app'); </script> </body> </html>