You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
665 B
Vue
35 lines
665 B
Vue
1 year ago
|
<script setup lang="ts">
|
||
|
import { DialogTitle } from '@headlessui/vue'
|
||
|
|
||
|
interface Props {
|
||
|
dismissable?: boolean
|
||
|
titleClass?: string
|
||
|
}
|
||
|
|
||
|
defineProps<Props>()
|
||
|
|
||
|
const api = inject('modal')
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<DialogTitle
|
||
|
as="div"
|
||
|
class="flex gap-2 justify-between items-center px-4 pt-3"
|
||
|
>
|
||
|
<h3
|
||
|
class="text-lg font-medium leading-6 text-gray-900"
|
||
|
:class="titleClass"
|
||
|
>
|
||
|
<slot />
|
||
|
</h3>
|
||
|
<slot v-if="dismissable" name="dismissable">
|
||
|
<button
|
||
|
class="text-2xl text-gray-500 appearance-none px-2 -mr-2"
|
||
|
@click="api.close"
|
||
|
>
|
||
|
×
|
||
|
</button>
|
||
|
</slot>
|
||
|
</DialogTitle>
|
||
|
</template>
|