We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a122bd2 commit 65531f5Copy full SHA for 65531f5
types/test/v3/setup-test.ts
@@ -93,3 +93,11 @@ defineComponent({
93
res?.charAt(1)
94
}
95
})
96
+
97
+// #12568
98
+const vm = new Vue({
99
+ setup() {},
100
+ render: h => h({})
101
+})
102
103
+vm.$mount('#app')
types/vue.d.ts
@@ -85,7 +85,12 @@ export type CombinedVueInstance<
85
Computed,
86
Props,
87
SetupBindings
88
-> = Data & Methods & Computed & Props & Instance & SetupBindings
+> = Data &
89
+ Methods &
90
+ Computed &
91
+ Props &
92
+ Instance &
+ (SetupBindings extends void ? {} : SetupBindings)
export type ExtendedVue<
Instance extends Vue,
0 commit comments