export class AngularRoutingPlug implements INavigateTo {
private readonly router: Router;
private readonly ngZone: NgZone;
constructor(router: Router, ngZone: NgZone) {
this.router = router;
this.ngZone = ngZone;
}
public go(url: string, params: NavigationExtras) {
this.ngZone.runTask(() => this.router.navigate([url], params));
}
}
179000cookie-checkAngular routing outside component code