How to open a new browser Tab , if using router.navigate .
this.router.navigate([]).then(result => { window.location.href = link; });
Try this one.
this.router.navigate([]).then(result => { window.open(link, '_blank'); });