From 7d301cecb901da194f2d803b6ef64b7efbf9f5cd Mon Sep 17 00:00:00 2001 From: Herrington Darkholme Date: Mon, 16 Oct 2017 00:49:33 +0800 Subject: [PATCH] fix(typing): relax $options type for TS2.6+ --- 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 0672226601b..53da4a44350 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -22,7 +22,7 @@ export interface CreateElement { export interface Vue { readonly $el: HTMLElement; - readonly $options: ComponentOptions; + readonly $options: ComponentOptions; readonly $parent: Vue; readonly $root: Vue; readonly $children: Vue[];