Communicate between sibling components Angular 2
问题 I tried to follow this answer but its too confusing Angular 2 event catching between sibling components I want to call a method in child component 1 when something is clicked on child component 2 Child component 2 emits an event called trackClick. Parent Component: <div> <audio-player></audio-player> <audio-albums></audio-albums> </div> Child Component 1 (audio-player) // Don't know what to do here, want to call this function trackChanged(track){ console.log("YES!! " + track); } Child