mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-10 17:22:15 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
13 lines
333 B
Vue
13 lines
333 B
Vue
<script lang="ts" setup>
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { CalendarGridHead, type CalendarGridHeadProps } from 'reka-ui'
|
|
|
|
const props = defineProps<CalendarGridHeadProps & { class?: HTMLAttributes['class'] }>()
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridHead v-bind="props">
|
|
<slot />
|
|
</CalendarGridHead>
|
|
</template>
|