Property Binding
<img [src]="heroImageUrl">
<img bind-src="heroImageUrl">
<img src="{{heroImageUrl}}"> <!--With Interpolation-->Target - Element Property
<img [src]="heroImageUrl">
<button [disabled]="isUnchanged">Cancel is disabled</button>Target - Component Property
<app-hero-detail [hero]="selectedHero"></app-hero-detail>@Input() hero: Hero;Target - Directive Property
Last updated