Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- prisma
- 검색
- route
- angular animation
- formgroup
- Angular Router
- ApexChart
- ajax 사용 예시
- 셀렉트박스 커스텀
- modal
- Oracle LISTAGG 사용 예시
- egov spring ajax 사용 예시
- 스크롤 이벤트
- angular modal
- scroll
- flex-1
- 앵귤러 모달
- angular route
- Router
- 옵저버블
- 아이오닉 스크롤 이벤트
- angular button
- summary
- Ionic modal
- 모달
- 호버
- 앵귤러 애니메이션
- 스크롤 이벤트 감지
- TAILWIND
- mysql if
Archives
- Today
- Total
목록라디오 (1)
깜놀하는 해므찌로
Angular Radio Component 생성 및 활용 예시
/* option */ // 템플릿 // 컴포넌트 import { Component, EventEmitter, Input, Output } from '@angular/core'; @Component({ selector: 'app-radio-option', templateUrl: './radio-option.component.html', styleUrls: ['./radio-option.component.scss'], standalone: true, }) export class RadioOptionComponent { @Output() selected$: EventEmitter = new EventEmitter(); @Input() value: any; @Input() disabled: boolean = ..
IT
2023. 6. 27. 15:04