我有一个具有Width和Height属性的组件。如何将组件的视图高度和宽度绑定到这些属性?
每当组件大小发生变化时,我都需要更新它们,即通过重新调整浏览器窗口大小。
答案 0 :(得分:29)
使用(window:resize)="onResize($event)"
收听全球事件。您可以使用window
,document
或body
作为目标。见this plunk
@Component({
selector: 'my-app',
template: `
<div
class="square"
[style.width.px]="width"
[style.height.px]="height"
(window:resize)="onResize($event)"
></div>
`
})
export class App {
width = 100;
height = 100;
onResize(event) {
this.width += 100;
this.height += 100;
}
}