transition을 활용한 사이즈 애니메이션
1 | transition: height 2s; |
1 | transition: height 2s; |
Update your browser to view this website correctly. Update my browser now
html 상에서 input (type=file) 만들기1<input type="file" (change)="onChange($event)"></input> onChange로 file 추출 및 저장하기123onCh
123ng build --prodng build --aot
라우터 및 라우팅 파라미터 설정Route를 활용하여 라우팅을 할 경로와 매칭하는 컴포넌트를 선언한다. Example12345export const routes: Routes = [ { path: '', redirectTo: 'prod
structural DirectivengFor어레이를 돌면서 반복적으로 나타내기 위한 요소이다.흔히 리스트를 출력할 때 사용한다. ngFor 내에서 인덱스를 붙이는 경우의 활용1<li *ngFor="let item of items; index as i;
hmr 이란?Hot Module Replacement의 약자로 모듈의 변경사항을 실시간으로 어플리케이션에 반영한다. angular에 environment 추가하기environment.hmr.ts 파일 만들기1234export const environment = 
Comments