Angular
Component
import { Component } from '@angular/core';
@Component({
selector: 'app-component-overview',
templateUrl: './component-overview.component.html',
styleUrls: ['./component-overview.component.css']
})
export class ComponentOverviewComponent {
} Life Cycle
View Encapsulation
Get Props from parent
Child emit event to the parent
Content Projection
Pipe
Directive
Dependency Injection
Re rendering
Last updated