docs: add new example for slider in form
This commit is contained in:
parent
64e2f9c199
commit
f5adb2ebd5
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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" />
|
||||||
63
apps/www/src/lib/registry/default/example/SliderForm.vue
Normal file
63
apps/www/src/lib/registry/default/example/SliderForm.vue
Normal 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>
|
||||||
Loading…
Reference in New Issue
Block a user