gpt4 book ai didi

javascript - (Fullcalendar 4 VueJs) Swap header titleFormat Month and Day

转载 作者:行者123 更新时间:2023-11-30 19:04:48 31 4
gpt4 key购买 nike

我需要交换标题标题,默认情况下“月”在前,“日”在后。我需要反过来。

我用这个 Prop :

 :titleFormat="{ day: '2-digit', month: 'long' }"

但是无论如何“月”在前。我在这里找到了解决方案:https://github.com/fullcalendar/fullcalendar/issues/3443但是如何针对 VueJS 方式进行调整?

提前谢谢你。

最佳答案

对我有帮助的个人解决方案是:

   datesRender(){
let elTitle = this.$refs.fullCalendar.$el.querySelector('.fc-center h2');
let elTitleText = elTitle.innerHTML;
elTitle.innerHTML = elTitleText.replace(/^([a-z]+) (\d{2,2}\s?-\s?\d{2,2})$/i, '$2 $1');
},

这将字符串“July 08 - 14”交换为“08 - 14 July”。

关于javascript - (Fullcalendar 4 VueJs) Swap header titleFormat Month and Day,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59102748/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com