Within my Angular page, I have implemented 4 tabs using mat-tab. Each tab contains a child component that encapsulates smaller components to cater to the specific functionality of that tab.
Now, I am faced with the challenge of navigating the user from a child component within one tab to either the 2nd or 3rd tab with the click of a button. How can I achieve this navigation between tabs when the child component is nested deep within another tab?
It's worth noting that I am not utilizing the router in this scenario, and I also need to figure out how to pass a data object to a child component located in a different tab.