From 6e7fed17a896bc26040ccca8bb48fc3d253d7440 Mon Sep 17 00:00:00 2001 From: Izabela Grzeskowiak Date: Fri, 15 Oct 2021 14:10:23 +0200 Subject: [PATCH] #3566 | fix type issue --- types/router.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/router.d.ts b/types/router.d.ts index f8588f42f..dfcc6cc99 100644 --- a/types/router.d.ts +++ b/types/router.d.ts @@ -200,7 +200,7 @@ export interface Route { path: string name?: string | null hash: string - query: Dictionary + query: Dictionary params: Dictionary fullPath: string matched: RouteRecord[]