React | Vue | Angular |
---|---|---|
<> | <template> | <ng-container> |
js map (key) | v-for (:key) | *ngFor |
v-if | *ngIf | |
v-for/v-if can't use together | *ngFor/*ngIf can't use together | |
<Component is:="" /> | *ngTemplateOutlet *ngComponentOutlet | |
constructor | created | ngOnInit() |
componentDidMount | mounted | ngAfterViewInit() |
componentDidUpdate() | updated | ngAfterContentChecked() |
componentWillUnmount | unmounted | ngOnDestroy() |