antoniandre / vue-cal

A Vue.js full calendar, no dependency, no BS. :metal:
https://antoniandre.github.io/vue-cal/
MIT License
1.24k stars 238 forks source link

Feature Request: option: hideDayOfMonth #563

Open rzorzorzo opened 10 months ago

rzorzorzo commented 10 months ago

Hello, I need to show a week calendar with only day of week and no day of month. this is easy to implement:

weekdays-headings.vue: line 69: dayOfMonth: !this.options.hideDayOfMonth ? date.getDate() : null, line 32: options: { type: Object, default: () => ({}) },

thanks.