On this page
IsActiveMatchOptions
interface
A set of options which specify how to determine if a UrlTree is active, given the UrlTree for the current router state.
interface IsActiveMatchOptions {
  matrixParams: 'exact' | 'subset' | 'ignored'
  queryParams: 'exact' | 'subset' | 'ignored'
  paths: 'exact' | 'subset'
  fragment: 'exact' | 'ignored'
}
   See also
Router.isActive
Properties
| Property | Description | 
|---|---|
matrixParams: 'exact' | 'subset' | 'ignored' | 
       Defines the strategy for comparing the matrix parameters of two  The matrix parameter matching is dependent on the strategy for matching the segments. That is, if the  
  | 
      
queryParams: 'exact' | 'subset' | 'ignored' | 
       Defines the strategy for comparing the query parameters of two   | 
      
paths: 'exact' | 'subset' | 
       Defines the strategy for comparing the   | 
      
fragment: 'exact' | 'ignored' | 
       
© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v14.angular.io/api/router/IsActiveMatchOptions