📜  窗口调整大小上的打字稿 - 打字稿代码示例

📅  最后修改于: 2022-03-11 14:48:23.795000             🧑  作者: Mango

代码示例2
resizeObservable$: Observable
resizeSubscription$: Subscription

ngOnInit() {
    this.resizeObservable$ = fromEvent(window, 'resize')
    this.resizeSubscription$ = this.resizeObservable$.subscribe( evt => {
      console.log('event: ', evt)
    })
}