Open rzorzorzo opened 1 year 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: () => ({}) },
dayOfMonth: !this.options.hideDayOfMonth ? date.getDate() : null,
options: { type: Object, default: () => ({}) },
thanks.
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.