mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
371 B
Markdown
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>
|
|
```
|