Skip to content

Commit 94ccca2

Browse files
committed
fix(types): allow slot attribute
close #12617
1 parent e244687 commit 94ccca2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

types/jsx.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1303,6 +1303,12 @@ type EventHandlers<E> = {
13031303
type ReservedProps = {
13041304
key?: string | number | symbol
13051305
ref?: VNodeData['ref']
1306+
/**
1307+
* @deprecated Old named slot syntax has been deprecated, use the new syntax
1308+
* instead: `<template v-slot:name>`
1309+
* https://v2.vuejs.org/v2/guide/components-slots.html#Named-Slots
1310+
*/
1311+
slot?: string
13061312
}
13071313

13081314
type ElementAttrs<T> = T & ReservedProps

types/test/v3/tsx-test.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ const Foo = defineComponent({
5151
// working
5252
;<Foo bar={1} />
5353
;<Foo bar={1} foo="baz" />
54+
55+
;<div slot="x" />

0 commit comments

Comments
 (0)