How to open a new browser Tab , if using router.navigate .
this.router.navigate([]).then(result => { window.location.href = link; });
this will open in new tab :
this._router.navigate([]).then(result => { window.open( `/customer/edit/${customer_id_param}`, '_blank'); });