ng-zorro-antd 项目搭建
Posted Angular完全开发手册
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-zorro-antd 项目搭建相关的知识,希望对你有一定的参考价值。
全局安装 angular-cli。项目使用版本号为 6
npm i -g @angular/cli
ng -v
_ _ ____ _ ___
/ \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _|
/ △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | |
/ ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | |
/_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___|
|___/
Angular CLI: 6.0.0
创建项目
ng new my-project --style less // 使用 less 样式表
进入项目,安装 ng-zorro-antd。如果你使用的是 0.7版本,需要安装 rxjs-compat做兼容。目前1.0 版已经支持 rxjs6 ,不需要安装 rxjs-compat。
cd my-project
npm install --save ng-zorro-antd
npm install --save rxjs-compat
在项目的 src/styles.less 中引入 ng-zorro-antd 样式表
/* You can add global styles to this file, and also import other style files */
@import "../node_modules/ng-zorro-antd/src/ng-zorro-antd.min.css";
打开 src/app/app.module.ts, 引入 ng-zorro-antd 模块。
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
NgZorroAntdModule.forRoot(),
],
bootstrap: [AppComponent],
})
export class AppModule {
}
在 AppComponent 中使用组件。
<button nz-button nzType="primary">
button
</button>
应该正常显示蓝色按钮。
以上是关于ng-zorro-antd 项目搭建的主要内容,如果未能解决你的问题,请参考以下文章
Angular NG-ZORRO 如何修改ng-zorro-antd组件自身的样式
推荐一个好用的阿里云开发的angular组件库ng-zorro-antd