0

我正在使用 Angular 星云库的日历组件。我需要翻译月份名称和星期几,所以我尝试使用日历属性 monthCellComponent 和 yearCellComponent。但没有任何改变。

这是我的代码 - 日历显示组件:

<nb-calendar [(date)]="date" [showHeader]="false" 
            [dayCellComponent]="dayCellComponent" [yearCellComponent]="yearCellComponent">
</nb-calendar>

自定义年份单元格组件

export class CalendarCustomYearCellComponent extends  NbCalendarYearCellComponent<Date>{}

自定义年份单元格注释的 Html 文件具有用于替换月份名称的虚拟文本。

在此处输入图像描述

- 需要在这里更改月份名称

4

1 回答 1

1

我查看了 GitHub 问题,找到了那个链接。希望,这有帮助

于 2020-01-14T16:08:49.773 回答