Router.navigateを使用している場合、新しいブラウザタブを開く方法。
this.router.navigate([]).then(result => { window.location.href = link; });
これを試してください。
this.router.navigate([]).then(result => { window.open(link, '_blank'); });
現在、angularはそれを行う方法やサービスを提供していないので、window
オブジェクトを使用して新しいタブでリンクを開く必要がありますwindow.open(link, '_blank')