docs: add new example for slider in form

This commit is contained in:
ɹǝʞɹɐԀ uǝʌS 2024-03-04 12:10:06 +01:00 committed by GitHub
parent 64e2f9c199
commit f5adb2ebd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 72 additions and 1 deletions

View File

@ -327,6 +327,7 @@ See the following links for more examples on how to use the `vee-validate` featu
- [Input](/docs/components/input#form) - [Input](/docs/components/input#form)
- [Radio Group](/docs/components/radio-group#form) - [Radio Group](/docs/components/radio-group#form)
- [Select](/docs/components/select#form) - [Select](/docs/components/select#form)
- [Slider](/docs/components/slider#form)
- [Switch](/docs/components/switch#form) - [Switch](/docs/components/switch#form)
- [Textarea](/docs/components/textarea#form) - [Textarea](/docs/components/textarea#form)
- [Combobox](/docs/components/combobox#form) - [Combobox](/docs/components/combobox#form)

View File

@ -25,4 +25,11 @@ import { Slider } from '@/components/ui/slider'
:default-value="[33]" :max="100" :step="1" :default-value="[33]" :max="100" :step="1"
/> />
</template> </template>
``` ```
## Examples
### Form
<ComponentPreview name="SliderForm" />

View File

@ -0,0 +1,63 @@
<script setup lang="ts">
import { h } from 'vue'
import { useForm } from 'vee-validate'
import { toTypedSchema } from '@vee-validate/zod'
import * as z from 'zod'
import { Button } from '@/lib/registry/default/ui/button'
import {
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
} from '@/lib/registry/default/ui/form'
import { Slider } from '@/lib/registry/default/ui/slider'
import { toast } from '@/lib/registry/default/ui/toast'
const formSchema = toTypedSchema(z.object({
duration: z.array(
z.number().min(1).max(1440)
),
}))
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="duration">
<FormItem>
<FormLabel>Duration</FormLabel>
<FormControl>
<Slider
v-bind="componentField"
:default-value="[30]"
:max="60"
:min="5"
:step="5"
/>
<FormDescription class="flex justify-between">
<span>How many minutes are you available?</span>
<span>{{ componentField.modelValue?.[0] ?? "30" }} min</span>
</FormDescription>
</FormControl>
<FormMessage />
</FormItem>
</FormField>
<Button type="submit">
Submit
</Button>
</form>
</template>