From b5bf024204e95be0948c3ee895930367726acb3b Mon Sep 17 00:00:00 2001 From: norbiros Date: Sat, 30 Aug 2025 16:59:26 +0200 Subject: [PATCH] docs(Form): mention of `nuxt-auto-form` for `AutoForm` functionality There is an increasing demand for generating custom Nuxt UI forms from schemas. While projects like `shadcn-vue` and `formkit` offer similar features, they do not integrate directly with Nuxt UI. To address this issue, I created a `nuxt-auto-form`, module providing `AutoForm` functionality until it is maybe natively supported in Nuxt UI (hopefully in v4). This commit adds a short note to the Form docs, that briefly mentions the module, which can be a valuable resource for the community. Related issues: #3876, #4653 --- docs/content/3.components/form.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/3.components/form.md b/docs/content/3.components/form.md index 0ee769b7fd..98e401aaa4 100644 --- a/docs/content/3.components/form.md +++ b/docs/content/3.components/form.md @@ -13,6 +13,11 @@ Use the Form component to validate form data using validation libraries such as It works with the [FormField](/components/form-field) component to display error messages around form elements automatically. +::tip +Nuxt UI currently doesn’t provide a component similar to [`AutoForm`](https://www.shadcn-vue.com/docs/components/auto-form) from shadcn-vue. +For this functionality, you can use the community-maintained module [@norbiros/nuxt-auto-form](https://github.com/Norbiros/nuxt-auto-form) +:: + ### Schema Validation It requires two props: