Use window.open()
. It’s pretty straightforward !
In your component.html
file-
<a (click)="goToLink('www.example.com')">page link</a>
In your component.ts
file-
goToLink(url: string){
window.open(url, "_blank");
}
Use window.open()
. It’s pretty straightforward !
In your component.html
file-
<a (click)="goToLink('www.example.com')">page link</a>
In your component.ts
file-
goToLink(url: string){
window.open(url, "_blank");
}