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

    Interface MatcherLocation

    Normalized/resolved Route location that returned by the matcher.

    interface MatcherLocation {
        matched: RouteRecordNormalized[];
        meta: RouteMeta;
        name: RouteRecordNameGeneric | null;
        params: RouteParamsGeneric;
        path: string;
    }
    Index

    Properties

    Array of RouteRecord containing components as they were passed when adding records. It can also contain redirect records. This can't be used directly

    meta: RouteMeta

    Merged meta properties from all the matched route records.

    Name of the matched record

    Object of decoded params extracted from the path.

    path: string

    Percentage encoded pathname section of the URL.