我正在使用 Angular 日历(请参阅此处的演示https://mattlewis92.github.io/angular-calendar/#/kitchen-sink)
我需要在我选择的一天(或更多天)上申请不同的课程。所以,如果我点击一天(或更多),我需要它们是粉红色的。
我对今天的细胞做了类似的事情
const today_cell: 'today-cell' = 'today-cell';
export class MonthCalendarComponent implements OnInit {
todayCssClass: string = today_cell;
beforeMonthViewRender({ body }: { body: CalendarMonthViewDay[] }): void {
body.forEach(day => {
if (day.isToday === true) {
day.cssClass = this.todayCssClass;
}
}
}
但我没有使用点击事件。我该怎么做?