From 98ea0a3b48e37719f278c10a8ee5fb94d7d5db4e Mon Sep 17 00:00:00 2001 From: Herrington Darkholme Date: Wed, 25 Oct 2017 12:45:15 +0800 Subject: [PATCH] fix(types): improve typing for better completion (#6886) --- 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 53da4a44350..2b025150bc7 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -61,7 +61,7 @@ export interface Vue { $createElement: CreateElement; } -export type CombinedVueInstance = Instance & Data & Methods & Computed & Props; +export type CombinedVueInstance = Data & Methods & Computed & Props & Instance; export type ExtendedVue = VueConstructor & Vue>; export interface VueConstructor {