일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- adaptive life cycle
- 자바스크립트
- opencv
- data
- visualizing
- javascript
- 애자일
- keras
- Project
- pandas
- Scrum
- analyzing
- 다나와
- Method
- data analyze
- 프로젝트
- algorithm
- webcrawling
- AWS
- angular
- python
- ECS
- Agile
- matplotlib
- 크롤링
- instance
- TypeScript
- tensorflow
- DANAWA
- Crawling
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