55 lines
1.5 KiB
Vue
55 lines
1.5 KiB
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import {
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/lib/registry/default/ui/form'
|
|
import { Input } from '@/lib/registry/default/ui/input'
|
|
import { toast } from '@/lib/registry/default/ui/toast'
|
|
import { vAutoAnimate } from '@formkit/auto-animate/vue'
|
|
|
|
import { toTypedSchema } from '@vee-validate/zod'
|
|
import { useForm } from 'vee-validate'
|
|
import { h } from 'vue'
|
|
import * as z from 'zod'
|
|
|
|
const formSchema = toTypedSchema(z.object({
|
|
username: z.string().min(2).max(50),
|
|
}))
|
|
|
|
const { handleSubmit } = useForm({
|
|
validationSchema: formSchema,
|
|
})
|
|
|
|
const onSubmit = handleSubmit((values) => {
|
|
toast({
|
|
title: 'You submitted the following values:',
|
|
description: h('pre', { class: 'mt-2 w-[340px] rounded-md bg-slate-950 p-4' }, h('code', { class: 'text-white' }, JSON.stringify(values, null, 2))),
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<form class="w-2/3 space-y-6" @submit="onSubmit">
|
|
<FormField v-slot="{ componentField }" name="username">
|
|
<FormItem v-auto-animate>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input type="text" placeholder="shadcn" v-bind="componentField" />
|
|
</FormControl>
|
|
<FormDescription>
|
|
This is your public display name.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
</FormField>
|
|
<Button type="submit">
|
|
Submit
|
|
</Button>
|
|
</form>
|
|
</template>
|