From 83920c93333486bb94edfb409118702d645c81bf Mon Sep 17 00:00:00 2001 From: Luke Bennett Date: Tue, 21 Jul 2020 14:38:58 +0100 Subject: [PATCH] fix(types): add missing `options` property type (#3248) --- 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