26 lines
510 B
Vue
26 lines
510 B
Vue
<script lang="ts">
|
|
import type { HTMLAttributes, InjectionKey } from 'vue'
|
|
|
|
export const FORM_ITEM_INJECTION_KEY
|
|
= Symbol() as InjectionKey<string>
|
|
</script>
|
|
|
|
<script lang="ts" setup>
|
|
import { provide } from 'vue'
|
|
import { useId } from 'radix-vue'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class']
|
|
}>()
|
|
|
|
const id = useId()
|
|
provide(FORM_ITEM_INJECTION_KEY, id)
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="cn('space-y-2', props.class)">
|
|
<slot />
|
|
</div>
|
|
</template>
|