跳转至

Angular

第一步: 配置开发环境

npm install -g @angular/cli

第二步: 创建新项目

ng new my-app

第三步: 启动应用

cd my-app
ng serve --open

第四步: 编辑第一个组件

src/app/app.component.ts

1
2
3
export class AppComponent {
  title = 'My First Angular App';
}

src/app/app.component.css

1
2
3
4
5
h1 {
  color: #369;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 250%;
}