mirror of
https://github.com/keven1024/015.git
synced 2026-05-30 17:09:34 +00:00
23 lines
701 B
Vue
23 lines
701 B
Vue
<script lang="ts" setup>
|
|
import type { DialogOverlayProps } from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
import { DrawerOverlay } from 'vaul-vue'
|
|
import { computed, type HtmlHTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<DialogOverlayProps & { class?: HtmlHTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerOverlay
|
|
data-slot="drawer-overlay"
|
|
v-bind="delegatedProps"
|
|
:class="cn('data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80', props.class)"
|
|
/>
|
|
</template>
|