Added auth functionality, initial work with views and field types
This commit is contained in:
12
frontend/components/ui/calendar/CalendarGridBody.vue
Normal file
12
frontend/components/ui/calendar/CalendarGridBody.vue
Normal file
@@ -0,0 +1,12 @@
|
||||
<script lang="ts" setup>
|
||||
import type { CalendarGridBodyProps } from "reka-ui"
|
||||
import { CalendarGridBody } from "reka-ui"
|
||||
|
||||
const props = defineProps<CalendarGridBodyProps>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<CalendarGridBody v-bind="props">
|
||||
<slot />
|
||||
</CalendarGridBody>
|
||||
</template>
|
||||
Reference in New Issue
Block a user