Guest User

Untitled

a guest
Jul 17th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @Component({...})
  2. export class ParentComponent implements AfterContentInit {
  3. @ContentChildren(ChildComponent)
  4. public children: QueryList<ChildComponent>;
  5.  
  6. public ngAfterContentInit(): void {
  7. this.children.changes.subscribe(() => ....);
  8. }
  9. }
Add Comment
Please, Sign In to add comment