Skip to content

Commit 65531f5

Browse files
committed
fix(types): fix instance type inference for setup() with no return value
fix #12568
1 parent a122bd2 commit 65531f5

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

types/test/v3/setup-test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,11 @@ defineComponent({
9393
res?.charAt(1)
9494
}
9595
})
96+
97+
// #12568
98+
const vm = new Vue({
99+
setup() {},
100+
render: h => h({})
101+
})
102+
103+
vm.$mount('#app')

types/vue.d.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,12 @@ export type CombinedVueInstance<
8585
Computed,
8686
Props,
8787
SetupBindings
88-
> = Data & Methods & Computed & Props & Instance & SetupBindings
88+
> = Data &
89+
Methods &
90+
Computed &
91+
Props &
92+
Instance &
93+
(SetupBindings extends void ? {} : SetupBindings)
8994

9095
export type ExtendedVue<
9196
Instance extends Vue,

0 commit comments

Comments
 (0)