Search code examples
angularangular-routingangular-router

Angular 2 Routing navigate run in new tab(Use Angular Router naviagte )


How to open a new browser Tab , if using router.navigate .

this.router.navigate([]).then(result => { window.location.href = link; });

Solution

  • Try this one.

    this.router.navigate([]).then(result => {  window.open(link, '_blank'); });