vue-router / RouteLocationMatched
RouteLocationMatched 
Normalized version of a route record.
Extends 
Properties 
aliasOf 
aliasOf: RouteRecordNormalized | undefined;Defines if this record is the alias of another one. This property is undefined if the record is the original one.
Inherited from 
beforeEnter 
beforeEnter: 
  | NavigationGuardWithThis<undefined>
  | NavigationGuardWithThis<undefined>[]
  | undefined;Registered beforeEnter guards
Inherited from 
RouteRecordNormalized.beforeEnter
children 
children: RouteRecordRaw[];Nested route records.
Inherited from 
RouteRecordNormalized.children
components 
components: 
  | Record<string, RouteComponent>
  | null
  | undefined;Components to display when the URL matches this route. Allow using named views.
Overrides 
RouteRecordNormalized.components
enterCallbacks 
enterCallbacks: Record<string, NavigationGuardNextCallback[]>;Internal
Registered beforeRouteEnter callbacks passed to next or returned in guards
Inherited from 
RouteRecordNormalized.enterCallbacks
instances 
instances: Record<string, ComponentPublicInstance | undefined | null>;Mounted route component instances Having the instances on the record mean beforeRouteUpdate and beforeRouteLeave guards can only be invoked with the latest mounted app instance if there are multiple application instances rendering the same view, basically duplicating the content on the page, which shouldn't happen in practice. It will work if multiple apps are rendering different named views.
Inherited from 
RouteRecordNormalized.instances
leaveGuards 
leaveGuards: Set<NavigationGuard>;Internal
Registered leave guards
Inherited from 
RouteRecordNormalized.leaveGuards
meta 
meta: RouteMeta;Arbitrary data attached to the record.
Inherited from 
mods 
mods: Record<string, unknown>;Internal
Contains the original modules for lazy loaded components.
Inherited from 
name 
name: RouteRecordNameGeneric;Name for the route record. Must be unique.
Inherited from 
path 
path: string;Path of the record. Should start with / unless the record is the child of another record.
Inherited from 
props 
props: Record<string, _RouteRecordProps>;Allow passing down params as props to the component rendered by router-view. Should be an object with the same keys as components or a boolean to be applied to every component.
Inherited from 
redirect 
redirect: 
  | RouteRecordRedirectOption
  | undefined;Where to redirect if the route is directly matched. The redirection happens before any navigation guard and triggers a new navigation with the new target location.
Inherited from 
RouteRecordNormalized.redirect
updateGuards 
updateGuards: Set<NavigationGuard>;Internal
Registered update guards

