Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created November 16, 2018 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NetanelBasal/8455790f7b16f6be90069d4abc28d8fc to your computer and use it in GitHub Desktop.
Save NetanelBasal/8455790f7b16f6be90069d4abc28d8fc to your computer and use it in GitHub Desktop.
@Input() set name(name: string) {
this._name = name;
this.cdr.detectChanges();
}
get name() {
return this._name;
}
constructor(private cdr: ChangeDetectorRef) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment