screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html lang="en"> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js get current year last two digit</h3> <p>The current year is {{ twoDigitYear }}.</p> </div> <script type="module"> const app = new Vue({ el: "#app", data: { twoDigitYear: '' }, mounted() { // get current year const year = new Date().getFullYear(); // convert to two-digit year this.twoDigitYear = year.toString().slice(-2); } }); </script> <style scoped> #app { font-family: Arial, sans-serif; font-size: 16px; color: #333; padding: 20px; } h3 { font-size: 24px; font-weight: bold; margin-bottom: 10px; } p { font-size: 18px; line-height: 1.5; } </style> </body> </html>