我在我的应用程序中使用DayPickerInput
。我知道之前和之后如何使用以限制日期选择,但是这些选项无法一起使用(对我来说)。但是单独使用它们效果很好,并限制了日期选择。
<DayPickerInput
dayPickerProps={{
disabledDays: {
before: today,
after: afterDate
}
}}
/>
有人可以帮忙吗?
答案 0 :(得分:0)
您可以使用DayPickerInput
通过以下方式禁用日期:
dayPickerProps={{
disabledDays: [
{ before: moment().subtract(1, 'months').toDate() },
{ after: moment().toDate() },
]
}}