From 721db7e6679af63fd8b6f6d755a4530adb6878c5 Mon Sep 17 00:00:00 2001 From: Greg Sabia Tucker Date: Mon, 25 Mar 2019 12:16:05 -0700 Subject: [PATCH] #9772 TypeScript: Vue types $attrs should be type Record Fixes https://github.com/vuejs/vue/issues/9772 --- types/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue.d.ts b/types/vue.d.ts index 204f9cca94d..d7495d557ac 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -34,7 +34,7 @@ export interface Vue { readonly $props: Record; readonly $ssrContext: any; readonly $vnode: VNode; - readonly $attrs: Record; + readonly $attrs: Record; readonly $listeners: Record; $mount(elementOrSelector?: Element | string, hydrating?: boolean): this;