Modal
OverlayA dialog box that sits on top of other content.
Preview
Usage
<Modal bind:open={isOpen} title="Confirm">
<p>Are you sure?</p>
</Modal>Props
| Name | Type | Default | Description |
|---|---|---|---|
| open | boolean | false | Whether the modal is open. |
| title | string | '' | The title of the modal. |
Slots
| Name | Description |
|---|---|
| default | Modal content. |
| footer | Modal footer content. |