如何将元素的width属性绑定到模型,然后从模型绑定到另一个dev?
<div [width1]="style.width.px">
<div [style.width.px]="width2">
export class MyComponent
{
width1: number;
width2: number = width1 - 30;
}
答案 0 :(得分:3)
我说:
<div #width1>
<div [style.width.px]="width2">
export class MyComponent
{
width1: number;
@ViewChild('width1') width1;
ngAfterViewInit(){
this.width2 = this.width1.nativeElement. width - 30;
}
}