-
-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathrouter.d.ts
573 lines (538 loc) · 16.5 KB
/
router.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
import Vue, {
PluginFunction,
AsyncComponent,
VNode,
Component as _Component
} from 'vue'
type Component =
| {}
| _Component<any, any, any, any>
| AsyncComponent<any, any, any, any>
type Dictionary<T> = { [key: string]: T }
type ErrorHandler = (err: Error) => void
export type RouterMode = 'hash' | 'history' | 'abstract'
export type RawLocation = string | Location
export type RedirectOption = RawLocation | ((to: Route) => RawLocation)
export type NavigationGuardNext<V extends Vue = Vue> = (
to?: RawLocation | false | ((vm: V) => any) | void
) => void
export type NavigationGuard<V extends Vue = Vue> = (
to: Route,
from: Route,
next: NavigationGuardNext<V>
) => any
/**
* Router instance.
*/
export declare class VueRouter {
constructor(options?: RouterOptions)
app: Vue
/**
* Original options object passed to create the Router
*/
options: RouterOptions
/**
* Configured mode when creating the Router instance.
*/
mode: RouterMode
/**
* Current {@link Route}
*/
currentRoute: Route
/**
* Add a navigation guard that executes before any navigation.
*
* @param guard - navigation guard to add
* @returns a function that removes the registered guard
*
* @example
* ```js
* router.beforeEach((to, from, next) => {
* // must call `next`
* })
* ```
*/
beforeEach(guard: NavigationGuard): () => void
/**
* Add a navigation guard that executes before navigation is about to be resolved. At this state all component have
* been fetched and other navigation guards have been successful.
*
* @param guard - navigation guard to add
* @returns a function that removes the registered guard
*
* @example
* ```js
* router.beforeResolve((to, from, next) => {
* // must call `next`
* })
* ```
*/
beforeResolve(guard: NavigationGuard): () => void
/**
* Add a navigation hook that is executed after every navigation. Returns a function that removes the registered hook.
*
* @param hook - navigation hook to add
* @returns a function that removes the registered guard
*
* @example
* ```js
* router.afterEach((to, from) => {
* console.log('after navigation')
* })
* ```
*/
afterEach(hook: (to: Route, from: Route) => any): () => void
/**
* Programmatically navigate to a new URL by pushing an entry in the history stack.
*
* @param to Route location to navigate to
*/
push(to: RawLocation): Promise<Route>
/**
* Programmatically navigate to a new URL by pushing an entry in the history stack.
*
* @param to Route location to navigate to
* @param onComplete Navigation success callback
* @param onAbort Navigation aborted callback
*/
push(
to: RawLocation,
onComplete?: (route: Route) => void,
onAbort?: ErrorHandler
): void
/**
* Programmatically navigate to a new URL by replacing the current entry in the history stack.
*
* @param to Route location to navigate to
*/
replace(to: RawLocation): Promise<Route>
/**
* Programmatically navigate to a new URL by replacing the current entry in the history stack.
*
* @param to Route location to navigate to
* @param onComplete Navigation success callback
* @param onAbort Navigation aborted callback
*/
replace(
to: RawLocation,
onComplete?: (route: Route) => void,
onAbort?: ErrorHandler
): void
/**
* Allows you to move forward or backward through the history. Calls `history.go()`.
*
* @param delta The position in the history to which you want to move, relative to the current page
*/
go(n: number): void
/**
* Go back in history if possible by calling `history.back()`. Equivalent to `router.go(-1)`.
*/
back(): void
/**
* Go forward in history if possible by calling `history.forward()`. Equivalent to `router.go(1)`.
*/
forward(): void
match (raw: RawLocation, current?: Route, redirectedFrom?: Location): Route
getMatchedComponents(to?: RawLocation | Route): Component[]
/**
* This method queues a callback to be called when the router has completed the initial navigation, which means it has
* resolved all async enter hooks and async components that are associated with the initial route.
*
* This is useful in server-side rendering to ensure consistent output on both the server and the client.
* @param cb onReady callback.
* @param errorCb errorCb will be called when the initial route resolution runs into an error (e.g. failed to resolve
* an async component).
*/
onReady(cb: () => void, errorCb?: ErrorHandler): void
/**
* Adds an error handler that is called every time a non caught error happens during navigation. This includes errors
* thrown synchronously and asynchronously, errors returned or passed to `next` in any navigation guard, and errors
* occurred when trying to resolve an async component that is required to render a route.
*
* @param handler - error handler to register
*/
onError(cb: ErrorHandler): void
/**
* @deprecated use {@link addRoute | router.addRoute()} instead
*/
addRoutes(routes: RouteConfig[]): void
/**
* Add a new {@link RouteConfig | route record} as the child of an existing route. If the route has a `name` and there
* is already an existing one with the same one, it overwrites it.
*
* @param parentName - Parent Route Record where `route` should be appended at
* @param route - Route Record to add
*/
addRoute(parentName: string, route: RouteConfig): void
/**
* Add a new {@link RouteConfig | route} to the router. If the route has a `name` and there is already an existing one
* with the same one, it overwrites it.
* @param route - Route Record to add
*/
addRoute(route: RouteConfig): void
/**
* Get the list of all the active route records.
*/
getRoutes(): RouteRecordPublic[]
/**
*
* @param to Route location
* @param current current is the current Route by default (most of the time you don't need to change this)
* @param append allows you to append the path to the `current` route (as with `router-link`)
*/
resolve(
to: RawLocation,
current?: Route,
append?: boolean
): {
location: Location
route: Route
href: string
/**
* backwards compat
*/
normalizedTo: Location
/**
* backwards compat
*/
resolved: Route
}
/**
* @internal
*/
static install: PluginFunction<never>
static version: string
static isNavigationFailure: typeof isNavigationFailure
static NavigationFailureType: {
[k in keyof typeof NavigationFailureType]: NavigationFailureType
}
static START_LOCATION: Route
}
/**
* Enumeration with all possible types for navigation failures.
*
* Can be passed to {@link isNavigationFailure} to check for specific failures.
*/
export enum NavigationFailureType {
/**
* @internal
*/
redirected = 2,
/**
* An aborted navigation is a navigation that failed because a navigation guard returned `false` or called
* `next(false)`
*/
aborted = 4,
/**
* A cancelled navigation is a navigation that failed because a more recent navigation finished started (not
* necessarily finished).
*/
cancelled = 8,
/**
* A duplicated navigation is a navigation that failed because it was initiated while already being at the exact same
* location.
*/
duplicated = 16
}
/**
* Extended Error that contains extra information regarding a failed navigation.
*/
export interface NavigationFailure extends Error {
/**
* Route location we were navigating from
*/
from: Route
/**
* Route location we were navigating to
*/
to: Route
/**
* Type of the navigation. One of {@link NavigationFailureType}
*/
type: NavigationFailureType.aborted | NavigationFailureType.cancelled | NavigationFailureType.duplicated
}
/**
* Check if an object is a {@link NavigationFailure}.
*/
export declare function isNavigationFailure(error: any, type?: NavigationFailureType): error is NavigationFailure
type Position = { x: number; y: number }
type PositionResult = Position | { selector: string; offset?: Position, behavior?: ScrollBehavior } | void
/**
* Options to initialize a {@link VueRouter} instance.
*/
export interface RouterOptions {
routes?: RouteConfig[]
/**
* Configure the router mode.
*
* default: `"hash"` (in browser) | `"abstract"` (in Node.js)
*
* available values: `"hash" | "history" | "abstract"`
* - `"hash"`: uses the URL hash for routing. Works in all Vue-supported browsers, including those that do not support
* HTML5 History API.
* - `"history"`: requires HTML5 History API and server config. See HTML5 History Mode.
* - `"abstract"`: works in all JavaScript environments, e.g. server-side with Node.js. **The router will
* automatically be forced into this mode if no browser API is present.**
*/
mode?: RouterMode
fallback?: boolean
base?: string
/**
* Default class applied to active {@link RouterLink}. If none is provided, `router-link-active` will be applied.
*/
linkActiveClass?: string
/**
* Default class applied to active {@link RouterLink}. If none is provided, `router-link-exact-active` will be
* applied.
*/
linkExactActiveClass?: string
/**
* Custom implementation to parse a query. See its counterpart, {@link stringifyQuery}.
*/
parseQuery?: (query: string) => Object
/**
* Custom implementation to stringify a query object. Should not prepend a leading `?`. {@link parseQuery} counterpart
* to handle query parsing.
*/
stringifyQuery?: (query: Object) => string
/**
* Function to control scrolling when navigating between pages. Can return a Promise to delay scrolling.
*
* For more details see {@link Scroll Behavior}.
*/
scrollBehavior?: (
to: Route,
from: Route,
savedPosition: Position | void
) => PositionResult | Promise<PositionResult> | undefined | null
}
type RoutePropsFunction = (route: Route) => Object
export interface PathToRegexpOptions {
sensitive?: boolean
strict?: boolean
end?: boolean
}
interface _RouteConfigBase {
path: string
name?: string
children?: RouteConfig[]
redirect?: RedirectOption
alias?: string | string[]
meta?: RouteMeta
beforeEnter?: NavigationGuard
caseSensitive?: boolean
pathToRegexpOptions?: PathToRegexpOptions
}
interface RouteConfigSingleView extends _RouteConfigBase {
component?: Component
props?: boolean | Object | RoutePropsFunction
}
interface RouteConfigMultipleViews extends _RouteConfigBase {
components?: Dictionary<Component>
props?: Dictionary<boolean | Object | RoutePropsFunction>
}
export type RouteConfig = RouteConfigSingleView | RouteConfigMultipleViews
export interface RouteRecord {
path: string
regex: RegExp
components: Dictionary<Component>
instances: Dictionary<Vue>
name?: string
parent?: RouteRecord
redirect?: RedirectOption
matchAs?: string
meta: RouteMeta
beforeEnter?: (
route: Route,
redirect: (location: RawLocation) => void,
next: () => void
) => any
props:
| boolean
| Object
| RoutePropsFunction
| Dictionary<boolean | Object | RoutePropsFunction>
}
export interface RouteRecordPublic {
path: string
components: Dictionary<Component>
instances: Dictionary<Vue>
name?: string
redirect?: RedirectOption
meta: any
beforeEnter?: (
route: Route,
redirect: (location: RawLocation) => void,
next: () => void
) => any
props:
| boolean
| Object
| RoutePropsFunction
| Dictionary<boolean | Object | RoutePropsFunction>
}
export interface Location {
name?: string
path?: string
hash?: string
query?: Dictionary<string | (string | null)[] | null | undefined>
params?: Dictionary<string>
append?: boolean
replace?: boolean
}
export interface Route {
path: string
name?: string | null
hash: string
query: Dictionary<string | (string | null)[]>
params: Dictionary<string>
fullPath: string
matched: RouteRecord[]
redirectedFrom?: string
meta?: RouteMeta
}
export interface RouteMeta extends Record<string | number | symbol, any> {}
export interface RouterLinkProps {
/**
* Denotes the target route of the link. When clicked, the value of the `to` prop will be passed to
* `router.push()` internally, so the value can be either a string or a location descriptor object.
*/
to: string | Location
/**
* Setting `replace` prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will
* not create a new history record.
*
* @default false
*/
replace?: boolean
/**
* Setting `append` prop always appends the relative path to the current path. For example, assuming we are navigating
* from `/a` to a relative link `b`, without `append` we will end up at `/b`, but with append we will end up at
* `/a/b`.
*
* @default false
*/
append?: boolean
/**
* Sometimes we want <RouterLink> to render as another tag, e.g <li>. Then we can use tag prop to specify which tag to
* render to, and it will still listen to click events for navigation.
*
* @default "a"
*/
tag?: string
/**
* Configure the active CSS class applied when the link is active. Note the default value can also be configured
* globally via the `linkActiveClass` router constructor option.
*
* @default "router-link-active"
*/
activeClass?: string
/**
* The default active class matching behavior is **inclusive match**. For example, `<RouterLink to="/a">` will get
* this class applied as long as the current path starts with `/a/` or is `/a`.
*
* @default false
*/
exact?: boolean
/**
* Allows matching only using the `path` section of the url, effectively ignoring the `query` and the `hash` sections.
*
* @default false
*/
exactPath?: boolean
/**
* Configure the active CSS class applied when the link is active with exact path match. Note the default value can
* also be configured globally via the `linkExactPathActiveClass` router constructor option.
*
* @default "router-link-exact-path-active"
*/
exactPathActiveClass?: string
/**
* Specify the event(s) that can trigger the link navigation.
*
* @default 'click'
*/
event?: string | ReadonlyArray<string>
/**
* Configure the active CSS class applied when the link is active with exact match. Note the default value can also be
* configured globally via the `linkExactActiveClass` router constructor option.
*
* @default "router-link-exact-active"
*/
exactActiveClass?: string
/**
* Configure the value of `aria-current` when the link is active with exact match. It must be one of the allowed
* values for [aria-current](https://www.w3.org/TR/wai-aria-1.2/#aria-current) in the ARIA spec. In most cases, the
* default of page should be the best fit.
*
* @default "page"
*/
ariaCurrentValue?:
| 'page'
| 'step'
| 'location'
| 'date'
| 'time'
| 'true'
| 'false'
}
export interface RouterLinkSlotArgument {
/**
* resolved url. This would be the `href` attribute of an `a` element
*/
href: string
/**
* resolved normalized location
*/
route: Route
/**
* function to trigger the navigation. It will automatically prevent events when necessary, the same way `RouterLink`
* does
*/
navigate: (e?: MouseEvent) => Promise<undefined | NavigationFailure>
/**
* `true` if the [active class](https://v3.router.vuejs.org/api/#active-class) should be applied. Allows to apply an
* arbitrary class
*/
isActive: boolean
/**
* `true` if the [exact active class](https://v3.router.vuejs.org/api/#exact-active-class) should be applied. Allows
* to apply an arbitrary class
*/
isExactActive: boolean
}
/**
* Component to render a link that triggers a navigation on click.
*/
export declare const RouterLink: new () => {
$props: RouterLinkProps
$scopedSlots: {
default?: ({
href,
route,
navigate,
isActive,
isExactActive
}: RouterLinkSlotArgument) => VNode[] | undefined
}
}
export interface RouterViewProps {
/**
* When a {@link RouterView | `<RouterView />`} has a name, it will render the component with the corresponding name
* in the matched route record's components option. See [Named
* Views](https://v3.router.vuejs.org/guide/essentials/named-views.html) for an example.
*
* @default "default"
*/
name?: string
}
/**
* Component to display the current route the user is at.
*/
export declare const RouterView: new () => {
$props: RouterViewProps
}
/**
* Initial route location where the router is. Can be used in navigation guards to differentiate the initial navigation.
*/
export declare const START_LOCATION: Route