Skip to content

Complete guide to

Mastering Pinia

written by its creator

该翻译已同步到了 的版本,其对应的 commit hash 是 1a3a28f

API 参考 / RouteLocationMatched

接口:RouteLocationMatched

一条路由记录的规范化版本。

继承关系

属性

aliasOf

aliasOf: undefined | RouteRecordNormalized

定义了是否这条记录是另一条的别名。如果记录是原始记录,则该属性为 undefined

继承自

RouteRecordNormalized.aliasOf


beforeEnter

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

被注册的 beforeEnter 守卫

继承自

RouteRecordNormalized.beforeEnter


children

children: RouteRecordRaw[]

嵌套的路由记录。

继承自

RouteRecordNormalized.children


components

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

{@inheritDoc RouteRecordMultipleViews.components}

Override

RouteRecordNormalized.components


instances

instances: Record<string, undefined | null | ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>>

Mounted route component instance。 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.

继承自

RouteRecordNormalized.instances


meta

meta: RouteMeta

{@inheritDoc _RouteRecordBase.meta}

继承自

RouteRecordNormalized.meta


name

name: undefined | RouteRecordName

{@inheritDoc _RouteRecordBase.name}

继承自

RouteRecordNormalized.name


path

path: string

{@inheritDoc _RouteRecordBase.path}

继承自

RouteRecordNormalized.path


props

props: Record<string, _RouteRecordProps>

{@inheritDoc RouteRecordMultipleViews.props}

继承自

RouteRecordNormalized.props


redirect

redirect: undefined | RouteRecordRedirectOption

{@inheritDoc _RouteRecordBase.redirect}

继承自

RouteRecordNormalized.redirect

Released under the MIT License.