I have a parent component which opens a new component on click of a link, this new component is supposed to have a close button which on close sends a closing message to parent and destroy itself.
We can send the closing message using ngOnDestroy
method, but how do I invoke the destroying of the child component.
<parent>
<child></child> //child to be opened on click but close
//event should be inside the child componenet
</parent>
Do correct me if i am having some conceptual mistake here. Thanks