screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <h3>Vue Js Get Month Name from Date</h3> <div id="app"> <p>The month is {{ getMonthName(date) }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { date: new Date() }; }, methods: { getMonthName(date) { const options = { month: 'long' }; return new Intl.DateTimeFormat('en-US', options).format(date); } } }) </script> </body> </html>