使用Angular CLI添加组件
我正在使用VScode和Angular尝试创建一些东西,以下是如何方便地添加组件的方法。
试试用Angular CLI添加组件吧
通过安装Angular CLI,您可以使用命令轻松地添加组件。
安装Angular CLI
让我们在VSCode终端中执行以下命令。
npm install @angular/cli
版本指定
npm install @angular/cli@8.3.19
先确认一下安装成功没有。
ng --version
_ _ ____ _ ___
/ \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _|
/ △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | |
/ ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | |
/_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___|
|___/
Angular CLI: 8.3.19
Node: 12.12.0
OS: darwin x64
Angular: 8.0.3
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.13.9
@angular-devkit/build-angular 0.13.9
@angular-devkit/build-optimizer 0.13.9
@angular-devkit/build-webpack 0.13.9
@angular-devkit/core 7.3.9
@angular-devkit/schematics 8.3.19
@angular/cli 8.3.19
@ngtools/webpack 7.3.9
@schematics/angular 8.3.19
@schematics/update 0.803.19
rxjs 6.5.3
typescript 3.4.5
webpack 4.29.0
非常棒!
添加组件
使用下面的命令将组件添加到系统中。
ng g component component-name
执行后将会创建如下所示的文件。
component-name
└ component-name.component.css
└ component-name.component.html
└ component-name.component.spec.ts
└ component-name.component.ts
那剩下的就随你喜欢的方式进行实现吧!