mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
391 B
391 B
title, description, navigation
| title | description | navigation | ||||
|---|---|---|---|---|---|---|
| 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.
<script setup lang="ts">
const { inputId, emitFormBlur, emitFormInput, emitFormChange } = useFormField()
</script>