Skip to content

Commit 49aae6b

Browse files
ktsnyyx990803
authored andcommitted
fix(types): make VNodeChildrenArrayContents type more accurate (#7287)
1 parent e055df8 commit 49aae6b

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

types/test/options-test.ts

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

@@ -277,6 +277,19 @@ Vue.component('component-with-scoped-slot', {
277277
}
278278
})
279279

280+
Vue.component('narrow-array-of-vnode-type', {
281+
render (h): VNode {
282+
const slot = this.$scopedSlots.default({})
283+
if (typeof slot !== 'string') {
284+
const first = slot[0]
285+
if (!Array.isArray(first) && typeof first !== 'string') {
286+
return first;
287+
}
288+
}
289+
return h();
290+
}
291+
})
292+
280293
Vue.component('functional-component', {
281294
props: ['prop'],
282295
functional: true,

types/vnode.d.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import { Vue } from "./vue";
33
export type ScopedSlot = (props: any) => VNodeChildrenArrayContents | string;
44

55
export type VNodeChildren = VNodeChildrenArrayContents | [ScopedSlot] | string;
6-
export interface VNodeChildrenArrayContents {
7-
[x: number]: VNode | string | VNodeChildren;
8-
}
6+
export interface VNodeChildrenArrayContents extends Array<VNode | string | VNodeChildrenArrayContents> {}
97

108
export interface VNode {
119
tag?: string;

0 commit comments

Comments
 (0)