We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7635e commit 770f63cCopy full SHA for 770f63c
src/components/Datepicker.vue
@@ -641,12 +641,12 @@ export default {
641
return disabled
642
},
643
/**
644
- * Whether a day is highlighted (only if it is not disabled already)
+ * Whether a day is highlighted (only if it is not disabled already except when highlighted.includeDisabled is true)
645
* @param {Date}
646
* @return {Boolean}
647
*/
648
isHighlightedDate (date) {
649
- if (this.isDisabledDate(date)) {
+ if (!(this.highlighted && this.highlighted.includeDisabled) && this.isDisabledDate(date)) {
650
return false
651
}
652
0 commit comments