File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
playground/app/components Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77Auto-generate Nuxt UI forms from Zod 4 schemas
88
99> [ !WARNING]
10- > This module is in early development. Many features are missing and the API may change.
10+ > This module is in ** beta** .
11+ > All ideas/suggestions/bug reports are welcome!
1112
1213- [ ✨   ; Release Notes] ( /CHANGELOG.md )
1314- [ 📖   ; Documentation] ( https://nuxt-auto-form.norbiros.dev )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const { header } = useAppConfig()
4545 <img src =" ~/assets/logo.svg" alt =" N" class =" w-8 mb-2" >
4646 Nuxt Auto Form
4747 <UBadge variant =" subtle" color =" warning" size =" sm" >
48- WIP
48+ Beta
4949 </UBadge >
5050 </NuxtLink >
5151 </template >
Original file line number Diff line number Diff line change 11<script setup lang="ts">
2- import { AInputPasswordToggle , AInputWithClear } from ' #components'
2+ import { AInputWithClear } from ' #components'
33import * as z from ' zod'
44
55const ENUM_MULTIPLE = [
@@ -48,7 +48,6 @@ const schema = z.object({
4848 multiple_input: z
4949 .array (z .enum (ENUM_MULTIPLE ))
5050 .meta ({ title: ' Multiple Enum Input' }),
51- password: z .string ().nonempty ().meta ({ input: { component: AInputPasswordToggle } }),
5251})
5352
5453function onSubmit(data : Record <string , any >) {
You can’t perform that action at this time.
0 commit comments