---
title: "useFormField"
description: "A composable to integrate custom inputs with the Form component"
canonical_url: "https://ui.nuxt.com/docs/composables/use-form-field"
last_updated: "2026-05-07"
---
# useFormField

> A composable to integrate custom inputs with the Form component

## Usage

Use the auto-imported `useFormField` composable to integrate custom inputs with a [Form](/docs/components/form).

```vue
<script setup lang="ts">
const { id, emitFormBlur, emitFormInput, emitFormChange } = useFormField()
</script>
```


## Sitemap

See the full [sitemap](/sitemap.md) for all pages.
