mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
20 lines
470 B
Vue
20 lines
470 B
Vue
<script lang="ts" setup>
|
|
import type { DrawerRootEmits, DrawerRootProps } from 'vaul-vue'
|
|
import { DrawerRoot } from 'vaul-vue'
|
|
import { useForwardPropsEmits } from 'radix-vue'
|
|
|
|
const props = withDefaults(defineProps<DrawerRootProps>(), {
|
|
shouldScaleBackground: true,
|
|
})
|
|
|
|
const emits = defineEmits<DrawerRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DrawerRoot v-bind="forwarded">
|
|
<slot />
|
|
</DrawerRoot>
|
|
</template>
|