File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ To show dynamic modal you can use the API `$vfm.show` function.
45
45
46
46
``` ts
47
47
type dynamicModalOptions = {
48
- component? : string | Component | AsyncComponent // modal component
48
+ component? : string | Component // modal component
49
49
bind? : { [key : string ]: any }, // bind props and attrs to modal
50
50
on? : { [key : string ]: Function | Function [] } // register events to modal
51
51
slots? : {
52
52
[key : string ]: // slot name
53
53
| {
54
- component: string | Component | AsyncComponent // slot component
54
+ component: string | Component // slot component
55
55
bind? : { [key : string ]: any } // bind props and attrs to slot component
56
56
on? : { [key : string ]: Function | Function [] } // register events to slot component
57
57
}
Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ features:
45
45
46
46
``` ts
47
47
type dynamicModalOptions = {
48
- component? : string | Component | AsyncComponent // modal component
48
+ component? : string | Component // modal component
49
49
bind? : { [key : string ]: any }, // bind props and attrs to modal
50
50
on? : { [key : string ]: Function | Function [] } // register events to modal
51
51
slots? : {
52
52
[key : string ]: // slot name
53
53
| {
54
- component: string | Component | AsyncComponent // slot component
54
+ component: string | Component // slot component
55
55
bind? : { [key : string ]: any } // bind props and attrs to slot component
56
56
on? : { [key : string ]: Function | Function [] } // register events to slot component
57
57
}
You can’t perform that action at this time.
0 commit comments