我有两个相同的组件
<component><component>
<component><component>
我需要它,如果其中一个更改另一个更改,例如,如果我有一个函数,当我单击元素写'hello'如果我在其中一个中执行它会反映在两个组件中,如何我能做到吗?
提前感谢!
答案 0 :(得分:2)
<component #c1 (click)="c2.title = 'hello'"><component>
<component #c2 (click)="c1.title = 'hello'"><component>
有关其他方式,请参阅https://angular.io/docs/ts/latest/cookbook/component-communication.html