W3cubDocs

/Angular

withInMemoryScrolling

Enables customizable scrolling behavior for router navigations.

API

function withInMemoryScrolling(
  options?: InMemoryScrollingOptions,
): InMemoryScrollingFeature;

Usage Notes

Basic example of how you can enable scrolling feature:

const appRoutes: Routes = [];
bootstrapApplication(AppComponent,
  {
    providers: [
      provideRouter(appRoutes, withInMemoryScrolling())
    ]
  }
);

Super-powered by Google ©2010–2025.
Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
https://angular.dev/api/router/withInMemoryScrolling