功能更新以及版本详情
1、首先要安装 ng-zorro:ng zorro 安装
2、ng zorro 安装成功之后然后再安装扩展包
使用
npm install ng-zorro-antd-extension --save
或者
ng add ng-zorro-antd-extension
3、app.module v15.11.0+
import zh from '@angular/common/locales/zh';
import { NZ_I18N, zh_CN } from 'ng-zorro-antd/i18n';
import { nzx_zh_CN } from 'ng-zorro-antd-extension/i18n';
registerLocaleData(zh);
const customLanguagePack = {
...zh_CN,
...nzx_zh_CN,
};
@NgModule({
declarations: [],
imports: [],
providers: [{ provide: NZ_I18N, useValue: customLanguagePack }],
bootstrap: [RootComponent],
})
export class AppModule {}
如需指定版本
npm install [email protected] --save
angular | ng-zorro-antd | ng-zorro-antd-extension | LTS ENDS |
---|---|---|---|
^18.0.0 | ^18.0.0 | ^18.0.0 | 2025-11-xx |
^17.0.0 | ^17.0.0 | ^15.6.0 | 2025-05-15 |
^16.0.0 | ^16.0.0 | ^15.6.0 | 2024-11-08 |
^15.0.0 | ^15.0.0 | ^15.0.0 | end |
^14.0.0 | ^14.0.0 | ^14.0.0 | end |
^13.0.0 | ^13.0.0 | ^13.0.0 | end |
如需指定版本
npm install [email protected] --save
注意:v13.0.0(只包含多选框,简单表格,映射管道),推荐使用最新版本,具体 feature 请查看组件文档中基本使用下的版本
欢迎 star fork pr