mirror of
https://github.com/keven1024/015.git
synced 2026-05-31 01:19:35 +00:00
16 lines
291 B
Vue
16 lines
291 B
Vue
<script lang="ts" setup>
|
|
import type { DrawerCloseProps } from 'vaul-vue'
|
|
import { DrawerClose } from 'vaul-vue'
|
|
|
|
const props = defineProps<DrawerCloseProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerClose
|
|
data-slot="drawer-close"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</DrawerClose>
|
|
</template>
|