on page navigate body scroll to top in angular 8 code example
Example 1: angular scroll to top
scrollToTop(){
window.scroll(0,0);
}
Example 2: angular route change scroll to top
RouterModule.forRoot(appRoutes, { scrollPositionRestoration: 'enabled' })