fix(accessibility): aria-label the close button for screenreaders docs: adds an example and escapable info section to documentation
14 lines
320 B
Vue
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>
|