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"> <h1>Vue Js Dynamically Bind Title Content </h1> <span v-bind:title="message"> Hover your mouse over me for a few seconds to see my dynamically bound title! </span> </div> <script type="module"> const app = Vue.createApp({ data() { return { message: 'You loaded this page on ' + new Date().toLocaleString() } }, }) app.mount('#app') </script> </body> </html>