File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { ComponentPublicInstance } from 'vue'
9
9
10
10
// normalize component/components into components and make every property always present
11
11
/**
12
- * Normalized version of a {@link RouteRecord | Route Record }
12
+ * Normalized version of a {@link RouteRecord route record }
13
13
*/
14
14
export interface RouteRecordNormalized {
15
15
/**
Original file line number Diff line number Diff line change @@ -198,14 +198,14 @@ export interface Router {
198
198
readonly options : RouterOptions
199
199
200
200
/**
201
- * Add a new {@link RouteRecordRaw | Route Record } as the child of an existing route.
201
+ * Add a new {@link RouteRecordRaw route record } as the child of an existing route.
202
202
*
203
203
* @param parentName - Parent Route Record where `route` should be appended at
204
204
* @param route - Route Record to add
205
205
*/
206
206
addRoute ( parentName : RouteRecordName , route : RouteRecordRaw ) : ( ) => void
207
207
/**
208
- * Add a new {@link RouteRecordRaw | route record} to the router.
208
+ * Add a new {@link RouteRecordRaw route record} to the router.
209
209
*
210
210
* @param route - Route Record to add
211
211
*/
@@ -223,13 +223,13 @@ export interface Router {
223
223
*/
224
224
hasRoute ( name : RouteRecordName ) : boolean
225
225
/**
226
- * Get a full list of all the {@link RouteRecord | route records}.
226
+ * Get a full list of all the {@link RouteRecord route records}.
227
227
*/
228
228
getRoutes ( ) : RouteRecord [ ]
229
229
230
230
/**
231
- * Returns the {@link RouteLocation | normalized version} of a
232
- * {@link RouteLocationRaw | route ___location}. Also includes an `href` property
231
+ * Returns the {@link RouteLocation normalized version} of a
232
+ * {@link RouteLocationRaw route ___location}. Also includes an `href` property
233
233
* that includes any existing `base`. By default the `currentLocation` used is
234
234
* `route.currentRoute` and should only be overriden in advanced use cases.
235
235
*
You can’t perform that action at this time.
0 commit comments