Files
ui/docs/content/2.composables/use-form-field.md
2024-09-30 12:01:35 +02:00

16 lines
371 B
Markdown

---
title: useFormField
description: 'A composable to integrate custom inputs with the Form component'
navigation: false
---
## Usage
Use the auto-imported `useFormField` composable to integrate custom inputs with a [Form](/components/form).
```vue
<script setup lang="ts">
const { inputId, emitFormBlur, emitFormInput, emitFormChange } = useFormField()
</script>
```