We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aed569 commit 72655e2Copy full SHA for 72655e2
src/vue-router.ts
@@ -6,8 +6,18 @@ import { OUT_OF_SCOPE, warn } from './utils'
6
7
export interface VueRouter extends RawRouter {
8
isReady: () => Promise<void>
9
+
10
+ /** @deprecated */
11
+ app: RawRouter['app']
12
13
14
+ getMatchedComponents: RawRouter['getMatchedComponents']
15
16
+ /** @deprecated use `isReady` instead */
17
+ onReady: RawRouter['onReady']
18
}
19
20
21
// @ts-ignore
22
RawRouter.prototype.isReady = function () {
23
return new Promise((resolve, reject) => {
0 commit comments