Modal component that masks current screen. Underlying components are not subject to any events while the modal component is shown. This component can be used to block user input while some operation is running or to show some information to the user.
VOnsModal
component covers the entire screen. Underlying components are not subject to any events while the modal component is shown.
This component can be used to block user input while some operation is running or to show some information to the user.
To show or hide a modal the visible
prop is used. This also works with v-model:visible
.
Name | Description |
---|---|
preshow | Fired just before the modal is displayed. |
postshow | Fired just after the modal is displayed. |
prehide | Fired just before the modal is hidden. |
posthide | Fired just after the modal is hidden. |
deviceBackButton | Fired on device back button. Default behavior is NOOP. |
Fired just before the modal is displayed.
Name | Type | Description |
---|---|---|
event | Object | Event object. |
event.modal | Object | Component object. |
event.cancel | Function | Execute this function to stop the modal from being shown. |
Fired just after the modal is displayed.
Name | Type | Description |
---|---|---|
event | Object | Event object. |
event.modal | Object | Component object. |
Fired just before the modal is hidden.
Name | Type | Description |
---|---|---|
event | Object | Event object. |
event.modal | Object | Component object. |
event.cancel | Function | Execute this function to stop the modal from being hidden. |
Fired just after the modal is hidden.
Name | Type | Description |
---|---|---|
event | Object | Event object. |
event.modal | Object | Component object. |
Fired on device back button. Default behavior is NOOP.
If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.
For bug reports and feature requests use our GitHub Issues page.