mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
371 B
371 B
title, description, navigation
| title | description | navigation |
|---|---|---|
| useFormField | A composable to integrate custom inputs with the Form component | false |
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>