How to trigger/access the child component method from parent component
We can do this by using @ViewChild. Reference : https://angular.io/guide/component-interaction Stackblitz demo : https://stackblitz.com/edit/angular-child-method-access?file=src/app/app.component.ts Way 1) With type selector Parent component: export class ParentComponent implements OnInit { //Type selector @ ViewChild ( ChildComponent ) childComp : ChildComponent ; constructor () {} ngOnInit () {} parentClickEvent () { this . childComp . childMethod (); } } Child Component: export class ChildComponent implements OnInit { childMethodStatus = "Child Method not trigered" ; count = 0 ; constructor () {} ngOnInit () {} childMethod () { thi...