Skip to content

Latest commit

 

History

History
175 lines (137 loc) · 5.64 KB

modal.md

File metadata and controls

175 lines (137 loc) · 5.64 KB
<script setup> import FwbModalExample from './modal/examples/FwbModalExample.vue' import FwbModalExampleSize from './modal/examples/FwbModalExampleSize.vue' import FwbModalExampleEscapable from './modal/examples/FwbModalExampleEscapable.vue' import FwbModalExamplePersistent from './modal/examples/FwbModalExamplePersistent.vue' import FwbModalExamplePosition from './modal/examples/FwbModalExamplePosition.vue' </script>

Vue Modal - Flowbite

Use the modal component to show interactive dialogs and notifications to your website users available in multiple sizes, colors, and styles


:::tip Original reference: https://flowbite.com/docs/components/modal/ :::

The modal component can be used as an interactive dialog on top of the main content area of the website to show notifications and gather information using form elements from your website users.

Get started with multiple sizes, colors, and styles built with the utility classes from Tailwind CSS and the components from Flowbite.

Default modal

```vue Open modal

<fwb-modal v-if="isShowModal" @close="closeModal"> <template #header>

Terms of Service
<template #body>

With less than a month to go before the European Union enacts new consumer privacy laws for its citizens, companies around the world are updating their terms of service agreements to comply.

The European Union’s General Data Protection Regulation (G.D.P.R.) goes into effect on May 25 and is meant to ensure a common set of data rights in the European Union. It requires organizations to notify users as soon as possible of high-risk data breaches that could personally affect them.

<template #footer>
<fwb-button @click="closeModal" color="alternative"> Decline <fwb-button @click="closeModal" color="green"> I accept

<script lang="ts" setup> import { ref } from 'vue' import { FwbButton, FwbModal } from 'flowbite-vue' const isShowModal = ref(false) function closeModal () { isShowModal.value = false } function showModal () { isShowModal.value = true } </script>

## Size

You can use four different modal sizing options starting from small to extra large, but keep in mind that the width of these modals will remain the same when browsing on smaller devices.

`xs`, `sm`, `md`, `lg`, `xl`, `2xl`, `3xl`, `4xl`, `5xl`, `6xl`, `7xl`

The default value is: `2xl`

<fwb-modal-example-size />
```vue
<template>
  <fwb-modal size="xs" />
  <fwb-modal size="md" />
  <fwb-modal size="xl" />
  <fwb-modal size="5xl" />
</template>

<script setup>
import { FwbModal } from 'flowbite-vue'
</script>

Position

The position prop allows you to control the placement of the modal on the screen, taking into account RTL (Right-to-Left) mode. You can choose from the following options:

top-start, top-center, top-end, center-start, center, center-end, bottom-start, bottom-center, bottom-end

The default value is: center

```vue <script setup> import { FwbModal } from 'flowbite-vue' </script>

## Escapable

The escapable property is true by default to improve user experience and accessibility.

This means that you may close the modal by

 - Using the close button on the modal
 - Clicking outside of the modal
 - Pressing the escape key

In some situations, your user may be required to interact with the modal content. If this is the case, you can set the `not-escapable` property to `true`. The developer can then choose when they want to close the modal.

<fwb-modal-example-escapable />
```vue
<template>
  <fwb-modal />
  <fwb-modal not-escapable />
</template>

<script setup>
import { FwbModal } from 'flowbite-vue'
</script>

Persistent

Clicking outside of the element or pressing esc key will not send close event.

```vue <script setup> import { FwbModal } from 'flowbite-vue' </script>

## API

### Props:

| Name         | Values                                                    | Default |
|--------------|-----------------------------------------------------------|---------|
| size         | `md`,`lg`, `xl`, `2xl`, `3xl`, `4xl`, `5xl`, `6xl`, `7xl` | 2xl     |
| notEscapable | `true`, `false`                                           | `false` |
| persistent   | `true`, `false`                                           | `true`  |

### Events:
| Name            | Type                                                                             |
|-----------------|----------------------------------------------------------------------------------|
| `close`         | Clicked on the close button, pressed `Esc`, or clicked outside the modal content |
| `click:outside` | Clicked outside the modal content                                                |