|
|
@@ -61,7 +61,7 @@ export interface Vue {
|
|
|
$createElement: CreateElement;
|
|
|
}
|
|
|
|
|
|
-export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Instance & Data & Methods & Computed & Props;
|
|
|
+export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Data & Methods & Computed & Props & Instance;
|
|
|
export type ExtendedVue<Instance extends Vue, Data, Methods, Computed, Props> = VueConstructor<CombinedVueInstance<Instance, Data, Methods, Computed, Props> & Vue>;
|
|
|
|
|
|
export interface VueConstructor<V extends Vue = Vue> {
|