일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- pandas
- angular
- algorithm
- analyzing
- Scrum
- javascript
- keras
- tensorflow
- data analyze
- TypeScript
- adaptive life cycle
- Crawling
- opencv
- 애자일
- Agile
- 프로젝트
- data
- 자바스크립트
- 크롤링
- AWS
- 다나와
- webcrawling
- ECS
- Project
- instance
- matplotlib
- visualizing
- DANAWA
- Method
- python
Archives
- Today
- Total
LiJell's 성장기
Angular Files 본문
반응형
- In Angular, each component has at least 4 files that work in harmony together.
- app.component.css
- app.component.html
- the view
- HTML file that receives variables from the component and displays them
- the view
- app.component.ts
- the component
- where variables are declared and modified
- the component
- app.module.ts
- COMPONENT
name = "Lime Jelly";
- VIEW
Hello, {{name}}!
- Result
Hello, Lime Jelly
- The double curly braces around {{name}} demonstrates what we call interpolation. Interpolation is the insertion of variable content from the component into the view.
반응형
'Front-End > Angular & TypeScript' 카테고리의 다른 글
Arrays and Iteration (0) | 2022.06.02 |
---|---|
Custom Types (0) | 2022.05.26 |
Intro Typescript (0) | 2022.05.26 |
HTTP (0) | 2022.05.26 |
The Stack (0) | 2022.05.26 |
Comments