I have the following html code
<mat-tab label="Regular" (selectChange)="tabClick()"
(click)="tabClick()">
<h1>Some more tab content</h1>
</mat-tab>
and this is the function,
tabClick(){
console.log('Tab clicked...');
}
but it doesn't seems to be called, why? No one of the above events are fired?