Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 API 中看不到任何禁用此行为的内容。
我只希望用户必须单击特定日期。
使用道具onSelecting。例如:onSelecting = {slot => false}
onSelecting
onSelecting = {slot => false}
我必须选择点击日期,而不需要拖动。使用具有所需逻辑的onSelectSlot 。
onSelectSlot={(e) => { if (e.slots?.length > 1) return; // or a message alert("onSelectSlot" + JSON.stringify(e)); }}
注意:这不会处理拖动选择样式!