I need to show the nombre
of an event but I do not know how to apply it in this case, I use fullcalendar
and I want to show me the nombre
of holidays, currently with código
only shows the day with colors depending on whether it is Sunday or optional.
renderHolidays(){
this.holidays.forEach(element => {
var formatDate = moment(element.date).format('YYYY-MM-DD')
if (element.timeZone === 'fullDay') {
$("td[data-date=" + formatDate + "]").addClass('holiday2');
}
else {
$("td[data-date=" + formatDate + "]").addClass('holiday');}
});
},