I want to add a routerlink to a mat-card component to make card clickable. My component is like this:
<mat-card class="card" >
<mat-card-content>
<mat-card-title> {{title}}</mat-card-title>
<mat-card-subtitle> {{subtitle}} </mat-card-subtitle>
</mat-card-content>
</mat-card>
How to accomplish this?
Thanks.