(Fullcalendar 4 VueJS) - 从 AM/PM 到 24H 的行时间格式
(Fullcalendar 4 VueJS) - Row time format from AM/PM to 24H
我为 VueJs
使用 Fullcalendar
组件。我需要为所有事件和行标题设置 24hours
格式。
对于事件,我找到了如何做到这一点:
:eventTimeFormat="{
hour: '2-digit',
minute: '2-digit',
hour12: false
}"
但是对于行标题我不能。
请多多指教。
为此,您可以使用 slotLabelFormat 选项。
例如,这将以 24 小时格式生成 hours/minutes 显示,例如 23:45
等:
:slotLabelFormat="{ 'hour12': false, 'hour': '2-digit', 'minute': '2-digit'}"
我为 VueJs
使用 Fullcalendar
组件。我需要为所有事件和行标题设置 24hours
格式。
对于事件,我找到了如何做到这一点:
:eventTimeFormat="{
hour: '2-digit',
minute: '2-digit',
hour12: false
}"
但是对于行标题我不能。
请多多指教。
为此,您可以使用 slotLabelFormat 选项。
例如,这将以 24 小时格式生成 hours/minutes 显示,例如 23:45
等:
:slotLabelFormat="{ 'hour12': false, 'hour': '2-digit', 'minute': '2-digit'}"