Guest User

Untitled

a guest
Nov 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @Input() set name(name: string) {
  2. this._name = name;
  3. this.cdr.detectChanges();
  4. }
  5.  
  6. get name() {
  7. return this._name;
  8. }
  9.  
  10. constructor(private cdr: ChangeDetectorRef) {}
Add Comment
Please, Sign In to add comment