Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ngOnChanges Called after a bound input property changes
  2. ngOnInit Called once the component is initialized
  3. ngDoCheck Called during every change detection run
  4. ngAfterContentInit Called after content (ng-content) has been projected into view
  5. ngAfterContentChecked Called every time the projected content has been checked
  6. ngAfterViewInit Called after the component’s view (and child views) has been initialized
  7. ngAfterViewChecked Called every time the view (and child views) have been checked
  8. ngOnDestroy Called once the component is about to be destroyed
  9.  
  10.  
  11. ngOnChanges(changes: SimpleChanges) {
  12.  
  13. }
  14. previousValue: any Declared in constructor.
  15. currentValue: any Declared in constructor.
  16. firstChange: boolean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement