screen_rotation
Copied to Clipboard
<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 date format day month year</h3> <p>{{ formattedDate }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", computed: { formattedDate() { const date = new Date(); // Replace this with your actual date object return date.getDate() + '/' + (date.getMonth() + 1) + '/' + date.getFullYear(); } } }); </script> </body> </html>