mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
20 lines
463 B
Vue
20 lines
463 B
Vue
<script setup lang="ts">
|
|
import {
|
|
DropdownMenuRadioGroup,
|
|
type DropdownMenuRadioGroupEmits,
|
|
type DropdownMenuRadioGroupProps,
|
|
useForwardPropsEmits,
|
|
} from 'reka-ui'
|
|
|
|
const props = defineProps<DropdownMenuRadioGroupProps>()
|
|
const emits = defineEmits<DropdownMenuRadioGroupEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRadioGroup v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuRadioGroup>
|
|
</template>
|