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

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>