Skip to content

Commit 448ba65

Browse files
KaelWDyyx990803
authored andcommitted
fix(types): correct scopedSlot types (#9131)
see #8946
1 parent 0d7fb73 commit 448ba65

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

types/test/options-test.ts

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Vue, { VNode } from "../index";
2-
import { AsyncComponent, ComponentOptions, FunctionalComponentOptions, Component } from "../index";
2+
import { ComponentOptions, Component } from "../index";
33
import { CreateElement } from "../vue";
44

55
interface MyComponent extends Vue {
@@ -297,6 +297,10 @@ Vue.component('component-with-scoped-slot', {
297297
// named scoped slot as vnode data
298298
item: (props: ScopedSlotProps) => [h('span', [props.msg])]
299299
}
300+
}),
301+
h('child', {
302+
// Passing down all slots from parent
303+
scopedSlots: this.$scopedSlots
300304
})
301305
])
302306
},
@@ -315,13 +319,18 @@ Vue.component('component-with-scoped-slot', {
315319
Vue.component('narrow-array-of-vnode-type', {
316320
render (h): VNode {
317321
const slot = this.$scopedSlots.default!({})
318-
if (typeof slot !== 'string') {
322+
if (typeof slot === 'string') {
323+
return h('span', slot)
324+
} else if (Array.isArray(slot)) {
319325
const first = slot[0]
320326
if (!Array.isArray(first) && typeof first !== 'string') {
321-
return first;
327+
return first
328+
} else {
329+
return h()
322330
}
331+
} else {
332+
return slot
323333
}
324-
return h();
325334
}
326335
})
327336

types/vnode.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Vue } from "./vue";
22

3-
export type ScopedSlot = (props: any) => VNodeChildrenArrayContents | string;
3+
export type ScopedSlot = (props: any) => VNodeChildrenArrayContents | VNode | string;
44

55
export type VNodeChildren = VNodeChildrenArrayContents | [ScopedSlot] | string;
66
export interface VNodeChildrenArrayContents extends Array<VNode | string | VNodeChildrenArrayContents> {}
@@ -34,7 +34,7 @@ export interface VNodeComponentOptions {
3434
export interface VNodeData {
3535
key?: string | number;
3636
slot?: string;
37-
scopedSlots?: { [key: string]: ScopedSlot };
37+
scopedSlots?: { [key: string]: ScopedSlot | undefined };
3838
ref?: string;
3939
refInFor?: boolean;
4040
tag?: string;

0 commit comments

Comments
 (0)