screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3.2.22/dist/vue.global.js"></script> </head> <body> <div id="app"> <h3>Vue Js Get Curent Time</h3> <p>Current time: {{ currentTime }}</p> </div> <script type="module"> const app = Vue.createApp({ data() { return { currentTime: '' } }, created() { setInterval(() => { this.currentTime = new Date().toLocaleTimeString() }, 1000) } }) app.mount('#app') </script> </body> </html>