Files
sionrui/frontend/app/web-gold/src/components/ui/drawer/DrawerFooter.vue
2026-03-15 23:31:45 +08:00

18 lines
329 B
Vue

<script lang="ts" setup>
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<div
data-slot="drawer-footer"
:class="cn('mt-auto flex flex-col gap-2 p-4', props.class)"
>
<slot />
</div>
</template>