You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Value passed to the attribute `aria-current` when the link is exactly active.
67
67
@@ -81,7 +81,7 @@ Whether `<router-link>` should not wrap its content in an `<a>` element. Useful
81
81
### exact-active-class
82
82
83
83
- type: `string`
84
-
- default: `'router-link-exact-active'` (or global [`routerLinkExactActiveClass`](#TODO))
84
+
- default: `"router-link-exact-active"` (or global [`routerLinkExactActiveClass`](#TODO))
85
85
86
86
Class to apply when the link is exact active.
87
87
@@ -129,3 +129,16 @@ Sometimes we may want the active class to be applied to an outer element rather
129
129
:::tip
130
130
If you add a `target="_blank"` to your `a` element, you must omit the `@click="navigate"` handler.
131
131
:::
132
+
133
+
## `<router-view>` Props
134
+
135
+
### name
136
+
137
+
- type: `string`
138
+
- default: `"default"`
139
+
140
+
When a `<router-view>` has a `name`, it will render the component with the corresponding name in the matched route record's `components` option. See [Named Views](/guide/essentials/named-views.md) for an example.
141
+
142
+
### route
143
+
144
+
- type: `RouteLocationNormalizedLoaded`. A route ___location that has all of its component resolved (if any was lazy loaded) so it can be displayed.
0 commit comments