Angular Resize check

agnusdei·2023년 7월 5일
0
@HostListener('window:resize', ['$event'])
  onResize(event: any) {
    // 사이즈 변경 이벤트 발생 시 호출되는 핸들러 함수
    console.log('Window resized');
    // 추가적인 로직을 수행할 수 있습니다.
  }

0개의 댓글