--- title: React, Vue and Angular tags: common --- | 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() | ## Lifecycle ### React ![](https://i.imgur.com/2ckmwdp.png) ### Vue ![](https://v3.vuejs.org/images/lifecycle.svg)