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 Detect key Press</h3> <div id="app"> <input @keydown="onKeyDown"> <p v-if="key">key Pressed: {{ key }}</p> </div> <script type="module"> const app = Vue.createApp({ // Define the data properties and methods for the app data() { return { key: null }; }, methods: { onKeyDown(event) { this.key = event.key; } } }); app.mount("#app"); </script> </body> </html>