mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-11 04:19:31 +00:00
12 lines
280 B
Vue
12 lines
280 B
Vue
<script lang="ts" setup>
|
|
import { RangeCalendarGridBody, type RangeCalendarGridBodyProps } from 'radix-vue'
|
|
|
|
const props = defineProps<RangeCalendarGridBodyProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<RangeCalendarGridBody v-bind="props">
|
|
<slot />
|
|
</RangeCalendarGridBody>
|
|
</template>
|