ChrisK
1
Q:

detect changes in html binded property angular 8

export class Person {
  public name = 'Initial Name';
}

export class PersonComponent implements OnInit, OnChanges {
  @Input() public person: Person;

  ngOnChanges(changes: SimpleChanges): void {
    console.log('changed');
  }
}
0

New to Communities?

Join the community