We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbf2d68 commit acf2844Copy full SHA for acf2844
packages/runtime-core/src/h.ts
@@ -96,7 +96,7 @@ export function h(
96
export function h(
97
type: typeof Teleport,
98
props: RawProps & TeleportProps,
99
- children: RawChildren
+ children: RawChildren | RawSlots
100
): VNode
101
102
// suspense
test-dts/h.test-d.ts
@@ -47,6 +47,7 @@ describe('h inference w/ Fragment', () => {
47
48
describe('h inference w/ Teleport', () => {
49
h(Teleport, { to: '#foo' }, 'hello')
50
+ h(Teleport, { to: '#foo' }, { default() {} })
51
// @ts-expect-error
52
expectError(h(Teleport))
53
0 commit comments