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 f02a373 commit 873a6a7Copy full SHA for 873a6a7
types/index.d.ts
@@ -36,13 +36,24 @@ export interface DynamicModalOptions {
36
* }
37
38
* ```
39
+ *
40
+ * @example
41
+ * ```js
42
+ * {
43
+ * slot: {
44
+ * default: 'pure string'
45
+ * }
46
47
+ * ```
48
*/
49
slots?: {
- [key: string]: {
50
+ [key: string]:
51
+ | {
52
component: string | Component | AsyncComponent
53
bind?: { [key: string]: any }
54
on?: { [key: string]: Function | Function[] }
55
}
56
+ | string
57
58
59
0 commit comments