API 参考 / RouteRecordNormalized
接口:RouteRecordNormalized
一条路由记录的规范化版本。
继承关系
RouteRecordNormalized
属性
aliasOf
• aliasOf: undefined
| RouteRecordNormalized
定义了是否这条记录是另一条的别名。如果记录是原始记录,则该属性为 undefined
。
beforeEnter
• beforeEnter: undefined
| NavigationGuardWithThis
<undefined
> | NavigationGuardWithThis
<undefined
>[]
被注册的 beforeEnter 守卫
children
• children: RouteRecordRaw
[]
嵌套的路由记录。
components
• components: undefined
| null
| Record
<string
, RawRouteComponent
>
Components to display when the URL matches this route. Allow using named views.
instances
• instances: Record
<string
, undefined
| null
| ComponentPublicInstance
>
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.
meta
• meta: RouteMeta
Arbitrary data attached to the record.
name
• name: undefined
| RouteRecordName
Name for the route record. Must be unique.
path
• path: string
Path of the record. Should start with /
unless the record is the child of another record.
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.
redirect
• redirect: undefined
| RouteRecordRedirectOption
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.