How to call sibling component method in angular 4?

蹲街弑〆低调 提交于 2019-12-07 06:53:28

To call a child component method from a parent component you can use ViewChild.

In your Parent class you would import the child component

import { ChildComponent } from './child-component.ts';

and then use something similar:

@ViewChild(ChildComponent) childComponent: ChildComponent;

Then you will have access to your children component methods and properties:

childComponent.myMethod()

or

this.parentComponentValue = childComponent.property
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!