In my angular component, I'm using tabs as shown here:
<mat-tab-group id="tabs" >
<mat-tab label="Tab 1">
<app-first-tab-content></app-first-tab-content>
</mat-tab>
<mat-tab label="Tab 2" >
<app-second-tab-content></app-second-tab-content>
</mat-tab>
</mat-tab-group>
How can I reload the content of each tab when click on the tab title?