My problem is that I have a lang.component loaded with . What I need is to access ActivatedRoute params in the root component
lang.component
Instead of using ActivatedRoute use Router.
this.router.events.subscribe((event) => { if(event instanceof NavigationEnd) { var snapshot = this.router.routerState.firstChild(this.route).snapshot; var params = snapshot.params; } })