Here's the current code snippet I am working with:
const moment = require('moment')
const m = moment
const currDay = m().format('D')
const dayOfWeek = m().format('dddd')
const daysInMonth = m().daysInMonth()
const startOfMonth = moment().startOf('month').format('YYYY-MM-DD hh:mm');
const endOfMonth = moment().endOf('month').format('YYYY-MM-DD hh:mm');
I'm looking to generate a calendar row that starts with today's date and displays the remaining days in the month so I can showcase each day using Vue.js in my HTML.
For instance: Wed 8, Thu 9, Fri 10... Fri 31.