Saturday, April 13, 2019

HostBinding, HostListener

A quick tip that helps me remember what they do -
HostBinding('value') myValue; is exactly the same as [value]="myValue"
And
HostListener('click') myClick(){ } is exactly the same as (click)="myClick()"



No comments:

Post a Comment