mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
19 lines
401 B
Vue
19 lines
401 B
Vue
<script lang="ts" setup>
|
|
import { type HTMLAttributes, provide } from "vue";
|
|
import { useId } from "radix-vue";
|
|
import { FORM_ITEM_INJECTION_KEY } from "./injectionKeys";
|
|
|
|
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>
|