screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h2>Vue Js Get Current Year</h2> <p>The current year is {{ currentYear }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { currentYear: new Date().getFullYear() }; } }) </script> <style> #app { text-align: center; margin: 20px; } h2 { font-size: 28px; color: #333; } p { font-size: 20px; color: #666; } </style> </body> </html>