I\'m a newbie for Angular 4+ (currently using v.6). I\'ve been trying to use this.router.navigate([\'/landing\']) function to redirect from login component to l
But my best solution is this:
add to constructor:
constructor(private readonly loader: NgModuleFactoryLoader)
then only after loading module itself you should call navigate:
this.loader.load(./login/login.module#LoginModule) .then(factory => { this.router.navigate(['/landing']); });