npm new angular-app --no-strict
npm install --save bootstrap@3
Add "node_modules/bootstrap/dist/css/bootstrap.min.css"
ng generate component ...
- String Interpolation: {{ data }}
- Property Binding: [property] = "data"
- String Interpolation to Property Binding
- Event Binding: (event) = "expression"
- Passing data with Event Binding: (input) = "onUpdateServerName($event)"
Two-way-binding: [(ngModel)] = "data"