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 {