Skip to content

Commit

Permalink
fix(types): type VNodeChildren should allow type number (#13067)
Browse files Browse the repository at this point in the history
close #12973
  • Loading branch information
xonx4l committed Dec 7, 2023
1 parent 6d857f5 commit 24fcf69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions types/vnode.d.ts
Expand Up @@ -22,6 +22,7 @@ type ScopedSlotReturnValue =
| VNode
| string
| boolean
| number
| null
| undefined
| ScopedSlotReturnArray
Expand All @@ -37,6 +38,7 @@ export type VNodeChildren =
| [ScopedSlot]
| string
| boolean
| number
| null
| undefined
export interface VNodeChildrenArrayContents
Expand Down

0 comments on commit 24fcf69

Please sign in to comment.