22 lines
548 B
Vue
22 lines
548 B
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { DrawerOverlay } from "vaul-vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
forceMount: { type: Boolean, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerOverlay
|
|
v-bind="delegatedProps"
|
|
:class="cn('fixed inset-0 z-50 bg-black/80', props.class)"
|
|
/>
|
|
</template>
|