editLink |
---|
API Documentation / RouteLocationNormalizedLoadedGeneric
Generic version of RouteLocationNormalizedLoaded that is used when no RouteMap is provided.
-
RouteLocationNormalizedGeneric
↳
RouteLocationNormalizedLoadedGeneric
• fullPath: string
The whole location including the search
and hash
. This string is
percentage encoded.
RouteLocationNormalizedGeneric.fullPath
• hash: string
Hash of the current location. If present, starts with a #
.
RouteLocationNormalizedGeneric.hash
• matched: RouteLocationMatched
[]
Array of RouteLocationMatched containing only plain components (any
lazy-loaded components have been loaded and were replaced inside the
components
object) so it can be directly used to display routes. It
cannot contain redirect records either. This property is non-enumerable.
RouteLocationNormalizedGeneric.matched
• meta: RouteMeta
Merged meta
properties from all the matched route records.
RouteLocationNormalizedGeneric.meta
• name: RouteRecordNameGeneric
Name of the matched record
RouteLocationNormalizedGeneric.name
• params: RouteParamsGeneric
Object of decoded params extracted from the path
.
RouteLocationNormalizedGeneric.params
• path: string
Percentage encoded pathname section of the URL.
RouteLocationNormalizedGeneric.path
• query: LocationQuery
Object representation of the search
property of the current location.
RouteLocationNormalizedGeneric.query
• redirectedFrom: undefined
| RouteLocationGeneric
Contains the location we were initially trying to access before ending up on the current location.