isDisabled: function (date, mode) {
console.log('checking if the date is disabled');
const day = date.getDate();
if (day == 29 || day == 30 || day == 31) {
return true;
}
return false;
},
I'm trying to disable the date that has day greater than 28 but it is not working...?
I'm trying to disable the date that has day greater than 28 but it is not working...?