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 setDate Method</h3> <p>Current Date: {{ currentDate }}</p> <button @click="setNewDate">Set New Date</button> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { currentDate: new Date(), }; }, methods: { setNewDate() { const newDate = new Date(this.currentDate); newDate.setDate(15); // set the day of the month to 15 this.currentDate = newDate; }, }, }) </script> <style scoped> #app { font-family: Arial, sans-serif; text-align: center; margin-top: 20px; } h3 { color: #333; font-size: 24px; } p { color: #666; font-size: 16px; margin-top: 10px; } button { background-color: #007bff; color: #fff; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer; margin-top: 20px; } </style> </body> </html>