W3cubDocs

/Angular

isActive

Returns a computed signal of whether the given url is activated in the Router.

API

function isActive(
  url: string | UrlTree,
  router: Router,
  matchOptions?: Partial<IsActiveMatchOptions> | undefined,
): Signal<boolean>;

Description

Returns a computed signal of whether the given url is activated in the Router.

As the router state changes, the signal will update to reflect whether the url is active.

When using the matchOptions argument, any missing properties fall back to the following defaults:

  • paths: 'subset'
  • queryParams: 'subset'
  • matrixParams: 'ignored'
  • fragment: 'ignored'

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/isActive