首页 > 解决方案 > 更改日视图的 fullCalendar 标题日期格式

问题描述

我想更改显示在日历上方的日期格式。

https://codesandbox.io/s/2z6wp2jozn?file=/src/DemoApp.jsx

当您选择日视图时,您可以看到December 21, 2020
我想更改日期的格式并显示Monday, 21.12

标签: reactjsfullcalendar

解决方案


你必须使用views道具

<FullCalendar
   views={{
     day: {
         titleFormat: { month: 'numeric', day: 'numeric', weekday: 'long' },
      },
    }}
/>

推荐阅读