I have to perform some business logic in my component and based on that result i need to navigate to a new item.
this.router.navigate(['../NewProduct', response.id], { relativeTo: this.route });
Requirement states that it should open in a new window. I know i can achieve this with a routerLink in html. But i should go straight to the page and can't use this method.
I can't find any way to add a parameter to the navigate function to go to a blank tab.
Is there any way this can be accomplished with Angular Routing?