Skip to content

Commit ce3443e

Browse files
committed
docs: update docs
1 parent 80642b0 commit ce3443e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/content/3.api/1.components/1.vue-final-modal.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ Display the modal or not.
5858
### displayDirective
5959

6060
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+
6163
- Type:
6264
- JS: `'if' | 'show'`{lang=ts}
6365
- TS: `PropType<'if' | 'show'>`{lang=ts}
@@ -73,20 +75,20 @@ Hide the overlay or not.
7375

7476
### overlayTransition
7577

76-
Customize the overlay transition.
78+
Bind props to the overlay transition component inside of `<VueFinalModal>`{lang=ts}.
7779
- Type:
80+
- See the [TransitionProps](https://vuejs.org/api/built-in-components.html#transition) in Vue 3 docs for more.
7881
- JS: `Object`{lang=ts}
7982
- TS: `PropType<TransitionProps>`{lang=ts}
80-
- see interface [TransitionProps](https://vuejs.org/api/built-in-components.html#transition)
8183
- Default: `() => ({ name: 'vfm' })`{lang=ts}
8284

8385
### contentTransition
8486

85-
Customize the content transition.
87+
Bind props to the content transition component inside of `<VueFinalModal>`{lang=ts}.
8688
- Type:
89+
- See the [TransitionProps](https://vuejs.org/api/built-in-components.html#transition) in Vue 3 docs for more.
8790
- JS: `Object`{lang=ts}
8891
- TS: `PropType<TransitionProps>`{lang=ts}
89-
- see interface [TransitionProps](https://vuejs.org/api/built-in-components.html#transition)
9092
- Default: `() => ({ name: 'vfm' })`{lang=ts}
9193

9294
### overlayClass

0 commit comments

Comments
 (0)