Files
flowbite-vue/docs/components/modal/examples/ModalEscapableExample.vue
Nick Adams 10be366d17 feat(modal-property): additional exit functionality (#169)
fix(accessibility): aria-label the close button for screenreaders
docs: adds an example and escapable info section to documentation
2023-07-15 11:56:15 +03:00

14 lines
320 B
Vue

<template>
<div class="vp-raw flex justify-start space-x-2">
<span>
<ModalExample trigger-text="Escapable" />
</span>
<span>
<ModalExample :escapable="false" trigger-text="Not Escapable" />
</span>
</div>
</template>
<script setup>
import ModalExample from './ModalExample.vue'
</script>