We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e244687 commit 94ccca2Copy full SHA for 94ccca2
types/jsx.d.ts
@@ -1303,6 +1303,12 @@ type EventHandlers<E> = {
1303
type ReservedProps = {
1304
key?: string | number | symbol
1305
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
1312
}
1313
1314
type ElementAttrs<T> = T & ReservedProps
types/test/v3/tsx-test.tsx
@@ -51,3 +51,5 @@ const Foo = defineComponent({
51
// working
52
;<Foo bar={1} />
53
;<Foo bar={1} foo="baz" />
54
+
55
+;<div slot="x" />
0 commit comments