How do I get the routerLink to open in a new tab? I tried target="_blank" but it did not achieve anything.
My HTML:
<clr-datagrid (clrDgRefresh)="reloadItems($event)" [clrDgLoading]="loading">
...
<clr-dg-row *ngFor="let item of response.results" [routerLink]="['../edit', item.id]">
<clr-dg-cell>{{item.number}}</clr-dg-cell>
...
</clr-dg-row>