From 9caed00d20f37c750e39db4ec86d278b453f0e5d Mon Sep 17 00:00:00 2001 From: Herrington Darkholme Date: Mon, 16 Oct 2017 02:26:08 +0800 Subject: [PATCH] fix(typing): relax $options type for TS2.6+ (#6819) --- 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[];