InputNumber forms added
parent
f0fd14cf74
commit
b721c3fd7b
|
@ -0,0 +1,130 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>InputNumber can be used with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<div class="card flex justify-center">
|
||||||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
||||||
|
<div class="flex flex-col gap-2">
|
||||||
|
<InputNumber name="number" fluid />
|
||||||
|
<Message v-if="$form.number?.invalid" severity="error">{{ $form.number.errors[0]?.message }}</Message>
|
||||||
|
</div>
|
||||||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||||||
|
import { z } from 'zod';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
initialValues: {
|
||||||
|
number: 20
|
||||||
|
},
|
||||||
|
resolver: zodResolver(
|
||||||
|
z.object({
|
||||||
|
number: z.number().gt(0, { message: 'Must be greater than 0.' }).lt(10, { message: 'Must be less than 10.' })
|
||||||
|
})
|
||||||
|
),
|
||||||
|
code: {
|
||||||
|
basic: `
|
||||||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
||||||
|
<div class="flex flex-col gap-2">
|
||||||
|
<InputNumber name="number" fluid />
|
||||||
|
<Message v-if="$form.number?.invalid" severity="error">{{ $form.number.errors[0]?.message }}</Message>
|
||||||
|
</div>
|
||||||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||||||
|
</Form>
|
||||||
|
`,
|
||||||
|
options: `
|
||||||
|
<template>
|
||||||
|
<div class="card flex justify-center">
|
||||||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
||||||
|
<div class="flex flex-col gap-2">
|
||||||
|
<InputNumber name="number" fluid />
|
||||||
|
<Message v-if="$form.number?.invalid" severity="error">{{ $form.number.errors[0]?.message }}</Message>
|
||||||
|
</div>
|
||||||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||||||
|
import { z } from 'zod';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
initialValues: {
|
||||||
|
number: 20
|
||||||
|
},
|
||||||
|
resolver: zodResolver(
|
||||||
|
z.object({
|
||||||
|
number: z.number().gt(0, { message: 'Must be greater than 0.' }).lt(10, { message: 'Must be less than 10.' })
|
||||||
|
})
|
||||||
|
)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onFormSubmit({ valid }) {
|
||||||
|
if (valid) {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<\/script>
|
||||||
|
|
||||||
|
`,
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card flex justify-center">
|
||||||
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
||||||
|
<div class="flex flex-col gap-2">
|
||||||
|
<InputNumber name="number" fluid />
|
||||||
|
<Message v-if="$form.number?.invalid" severity="error">{{ $form.number.errors[0]?.message }}</Message>
|
||||||
|
</div>
|
||||||
|
<Button type="submit" severity="secondary" label="Submit" />
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { zodResolver } from '@primevue/form/resolvers';
|
||||||
|
import { useToast } from "primevue/usetoast";
|
||||||
|
import { z } from 'zod';
|
||||||
|
|
||||||
|
const toast = useToast();
|
||||||
|
const initialValues = ref({
|
||||||
|
number: 20
|
||||||
|
});
|
||||||
|
const resolver = ref(zodResolver(
|
||||||
|
z.object({
|
||||||
|
number: z.number().gt(0, { message: 'Must be greater than 0.' }).lt(10, { message: 'Must be less than 10.' })
|
||||||
|
})
|
||||||
|
));
|
||||||
|
|
||||||
|
const onFormSubmit = ({ valid }) => {
|
||||||
|
if (valid) {
|
||||||
|
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
<\/script>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onFormSubmit({ valid }) {
|
||||||
|
if (valid) {
|
||||||
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -17,6 +17,7 @@ import CurrencyDoc from '@/doc/inputnumber/CurrencyDoc.vue';
|
||||||
import DisabledDoc from '@/doc/inputnumber/DisabledDoc.vue';
|
import DisabledDoc from '@/doc/inputnumber/DisabledDoc.vue';
|
||||||
import FilledDoc from '@/doc/inputnumber/FilledDoc.vue';
|
import FilledDoc from '@/doc/inputnumber/FilledDoc.vue';
|
||||||
import FloatLabelDoc from '@/doc/inputnumber/FloatLabelDoc.vue';
|
import FloatLabelDoc from '@/doc/inputnumber/FloatLabelDoc.vue';
|
||||||
|
import FormDoc from '@/doc/inputnumber/FormDoc.vue';
|
||||||
import IftaLabelDoc from '@/doc/inputnumber/IftaLabelDoc.vue';
|
import IftaLabelDoc from '@/doc/inputnumber/IftaLabelDoc.vue';
|
||||||
import ImportDoc from '@/doc/inputnumber/ImportDoc.vue';
|
import ImportDoc from '@/doc/inputnumber/ImportDoc.vue';
|
||||||
import InvalidDoc from '@/doc/inputnumber/InvalidDoc.vue';
|
import InvalidDoc from '@/doc/inputnumber/InvalidDoc.vue';
|
||||||
|
@ -41,6 +42,11 @@ export default {
|
||||||
label: 'Numerals',
|
label: 'Numerals',
|
||||||
component: NumeralsDoc
|
component: NumeralsDoc
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'form',
|
||||||
|
label: 'Form',
|
||||||
|
component: FormDoc
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'locale',
|
id: 'locale',
|
||||||
label: 'Locale',
|
label: 'Locale',
|
||||||
|
|
Loading…
Reference in New Issue