File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
docs/content/3.api/1.components Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ Display the modal or not.
58
58
### displayDirective
59
59
60
60
Render the modal content via ` 'if' ` {lang = ts } or ` 'show' ` {lang = ts } directive .
61
+ if you need to keep the status of the modal , you can use ` 'show' ` directive . for example if you have a draggable and resizable modal and you need to keep the size and position of the modal while re - open it ([see example ](/ use - cases / drag - resize - modal )).
62
+
61
63
- Type :
62
64
- JS : ` 'if' | 'show' ` {lang = ts }
63
65
- TS : ` PropType<'if' | 'show'> ` {lang = ts }
@@ -73,20 +75,20 @@ Hide the overlay or not.
73
75
74
76
### overlayTransition
75
77
76
- Customize the overlay transition .
78
+ Bind props to the overlay transition component inside of ` <VueFinalModal> ` { lang = ts } .
77
79
- Type :
80
+ - See the [TransitionProps ](https :// vuejs.org/api/built-in-components.html#transition) in Vue 3 docs for more.
78
81
- JS : ` Object ` {lang = ts }
79
82
- TS : ` PropType<TransitionProps> ` {lang = ts }
80
- - see interface [TransitionProps ](https :// vuejs.org/api/built-in-components.html#transition)
81
83
- Default : ` () => ({ name: 'vfm' }) ` {lang = ts }
82
84
83
85
### contentTransition
84
86
85
- Customize the content transition.
87
+ Bind props to the content transition component inside of ` <VueFinalModal> ` { lang = ts } .
86
88
- Type :
89
+ - See the [TransitionProps ](https :// vuejs.org/api/built-in-components.html#transition) in Vue 3 docs for more.
87
90
- JS : ` Object ` {lang = ts }
88
91
- TS : ` PropType<TransitionProps> ` {lang = ts }
89
- - see interface [TransitionProps](https://vuejs.org/api/built-in-components.html#transition)
90
92
- Default : ` () => ({ name: 'vfm' }) ` {lang = ts }
91
93
92
94
### overlayClass
You can’t perform that action at this time.
0 commit comments