1this.router.routeReuseStrategy.shouldReuseRoute = function(){
2 return false;
3 };
4this.router.events.subscribe((evt) => {
5 if (evt instanceof NavigationEnd) {
6 // trick the Router into believing it's last link wasn't previously loaded
7 this.router.navigated = false;
8 // if you need to scroll back to top, here is the right place
9 window.scrollTo(0, 0);
10 }
11 });