2024-10-23 09:55:14 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
2024-10-30 10:26:41 +00:00
|
|
|
<p>InputNumber integrates seamlessly with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
|
2024-10-23 09:55:14 +00:00
|
|
|
</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">
|
2024-10-30 10:26:41 +00:00
|
|
|
<div class="flex flex-col gap-1">
|
2024-10-23 09:55:14 +00:00
|
|
|
<InputNumber name="number" fluid />
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.number?.invalid" severity="error" size="small" variant="simple">{{ $form.number.error?.message }}</Message>
|
2024-10-23 09:55:14 +00:00
|
|
|
</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: {
|
2024-10-24 06:29:11 +00:00
|
|
|
number: 5
|
2024-10-23 09:55:14 +00:00
|
|
|
},
|
|
|
|
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">
|
2024-10-30 10:26:41 +00:00
|
|
|
<div class="flex flex-col gap-1">
|
2024-10-23 09:55:14 +00:00
|
|
|
<InputNumber name="number" fluid />
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.number?.invalid" severity="error" size="small" variant="simple">{{ $form.number.error?.message }}</Message>
|
2024-10-23 09:55:14 +00:00
|
|
|
</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">
|
2024-10-30 10:26:41 +00:00
|
|
|
<div class="flex flex-col gap-1">
|
2024-10-23 09:55:14 +00:00
|
|
|
<InputNumber name="number" fluid />
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.number?.invalid" severity="error" size="small" variant="simple">{{ $form.number.error?.message }}</Message>
|
2024-10-23 09:55:14 +00:00
|
|
|
</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: {
|
2024-10-24 06:29:11 +00:00
|
|
|
number: 5
|
2024-10-23 09:55:14 +00:00
|
|
|
},
|
|
|
|
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">
|
2024-10-30 10:26:41 +00:00
|
|
|
<div class="flex flex-col gap-1">
|
2024-10-23 09:55:14 +00:00
|
|
|
<InputNumber name="number" fluid />
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.number?.invalid" severity="error" size="small" variant="simple">{{ $form.number.error?.message }}</Message>
|
2024-10-23 09:55:14 +00:00
|
|
|
</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({
|
2024-10-24 06:29:11 +00:00
|
|
|
number: 5
|
2024-10-23 09:55:14 +00:00
|
|
|
});
|
|
|
|
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>
|