我想遍历通过传递minDate禁用的前几个月。目前,在给定minDate之后,我无法遍历前几个月
之所以需要此功能是因为,我想突出显示前几个月的假期,如下所示。
<DatePicker
selected={new Date()}
minDate={new Date()}
showDisabledMonthNavigation
highlightDates={[new Date('01/20/2019'), new Date('01/22/2019')]}
onChange={(event) => console.log(event)}
/>