mirror of
https://github.com/Nezumi-2711/Sink.git
synced 2026-09-22 13:48:35 +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>
|