@yesstudio/nuxt-composables
    Preparing search index...

    Interface RouteLocationMatched

    Normalized version of a RouteRecord | route record.

    interface RouteLocationMatched {
        aliasOf: RouteRecordNormalized | undefined;
        beforeEnter:
            | NavigationGuardWithThis<undefined>
            | NavigationGuardWithThis<undefined>[]
            | undefined;
        children: RouteRecordRaw[];
        components: Record<string, RouteComponent> | null | undefined;
        enterCallbacks: Record<string, NavigationGuardNextCallback[]>;
        instances: Record<string, ComponentPublicInstance | undefined | null>;
        leaveGuards: Set<NavigationGuard>;
        meta: RouteMeta;
        mods: Record<string, unknown>;
        name: RouteRecordNameGeneric;
        path: string;
        props: Record<string, _RouteRecordProps>;
        redirect: RouteRecordRedirectOption | undefined;
        updateGuards: Set<NavigationGuard>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aliasOf: RouteRecordNormalized | undefined

    Defines if this record is the alias of another one. This property is undefined if the record is the original one.

    beforeEnter:
        | NavigationGuardWithThis<undefined>
        | NavigationGuardWithThis<undefined>[]
        | undefined

    Registered beforeEnter guards

    children: RouteRecordRaw[]

    Nested route records.

    components: Record<string, RouteComponent> | null | undefined

    Components to display when the URL matches this route. Allow using named views.

    enterCallbacks: Record<string, NavigationGuardNextCallback[]>

    Registered beforeRouteEnter callbacks passed to next or returned in guards

    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.

    leaveGuards: Set<NavigationGuard>

    Registered leave guards

    meta: RouteMeta

    Arbitrary data attached to the record.

    mods: Record<string, unknown>

    Contains the original modules for lazy loaded components.

    Name for the route record. Must be unique.

    path: string

    Path of the record. Should start with / unless the record is the child of another record.

    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.

    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.

    updateGuards: Set<NavigationGuard>

    Registered update guards