Skip to content

Commit 241eea1

Browse files
KaelWDyyx990803
authored andcommitted
fix(types): allow scoped slots to return a single VNode (#9563)
1 parent f333016 commit 241eea1

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

types/test/options-test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,10 @@ Vue.component('component-with-scoped-slot', {
323323
item: (props: ScopedSlotProps) => [h('span', [props.msg])]
324324
}
325325
}),
326+
h('child', [
327+
// return single VNode (will be normalized to an array)
328+
(props: ScopedSlotProps) => h('span', [props.msg])
329+
]),
326330
h('child', {
327331
// Passing down all slots from parent
328332
scopedSlots: this.$scopedSlots

types/vnode.d.ts

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

3+
export type ScopedSlot = (props: any) => ScopedSlotReturnValue;
4+
type ScopedSlotReturnValue = VNode | string | boolean | null | undefined | ScopedSlotReturnArray;
5+
interface ScopedSlotReturnArray extends Array<ScopedSlotReturnValue> {}
6+
37
// Scoped slots are guaranteed to return Array of VNodes starting in 2.6
4-
export type ScopedSlot = (props: any) => ScopedSlotChildren;
8+
export type NormalizedScopedSlot = (props: any) => ScopedSlotChildren;
59
export type ScopedSlotChildren = VNode[] | undefined;
610

711
// Relaxed type compatible with $createElement

types/vue.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
ThisTypedComponentOptionsWithRecordProps,
1313
WatchOptions,
1414
} from "./options";
15-
import { VNode, VNodeData, VNodeChildren, ScopedSlot } from "./vnode";
15+
import { VNode, VNodeData, VNodeChildren, ScopedSlot, NormalizedScopedSlot } from "./vnode";
1616
import { PluginFunction, PluginObject } from "./plugin";
1717

1818
export interface CreateElement {
@@ -28,7 +28,7 @@ export interface Vue {
2828
readonly $children: Vue[];
2929
readonly $refs: { [key: string]: Vue | Element | Vue[] | Element[] };
3030
readonly $slots: { [key: string]: VNode[] | undefined };
31-
readonly $scopedSlots: { [key: string]: ScopedSlot | undefined };
31+
readonly $scopedSlots: { [key: string]: NormalizedScopedSlot | undefined };
3232
readonly $isServer: boolean;
3333
readonly $data: Record<string, any>;
3434
readonly $props: Record<string, any>;

0 commit comments

Comments
 (0)