2

我在 API 中看不到任何禁用此行为的内容。

我只希望用户必须单击特定日期。

4

2 回答 2

4

使用道具onSelecting。例如:onSelecting = {slot => false}

于 2018-09-09T02:18:53.960 回答
0

我必须选择点击日期,而不需要拖动。使用具有所需逻辑的onSelectSlot 。

onSelectSlot={(e) => {
  if (e.slots?.length > 1) return; // or a message
  alert("onSelectSlot" + JSON.stringify(e));
}}

注意:这不会处理拖动选择样式!

于 2022-01-22T07:14:47.200 回答