From 0583fd3c7e28b89e0c698b55f4741ad7335c7ced Mon Sep 17 00:00:00 2001 From: Luke Bennett Date: Sat, 27 Jun 2020 15:25:21 +0100 Subject: [PATCH] fix(types): add missing `options` property type --- types/router.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/router.d.ts b/types/router.d.ts index 384a7424b..de0e327fe 100644 --- a/types/router.d.ts +++ b/types/router.d.ts @@ -21,6 +21,7 @@ export declare class VueRouter { constructor(options?: RouterOptions) app: Vue + options: RouterOptions; mode: RouterMode currentRoute: Route