2024-10-21 14:45:53 +00:00
|
|
|
<template>
|
2024-10-22 12:10:17 +00:00
|
|
|
<DocSectionText v-bind="$attrs">
|
2024-10-30 10:26:41 +00:00
|
|
|
<p>Checkbox integrates seamlessly with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
|
2024-10-22 12:10:17 +00:00
|
|
|
</DocSectionText>
|
2024-10-21 14:45:53 +00:00
|
|
|
<div class="card flex justify-center">
|
2024-10-22 09:14:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex justify-center flex-col gap-4">
|
2024-10-21 14:45:53 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-30 10:26:41 +00:00
|
|
|
<CheckboxGroup name="ingredient" class="flex flex-wrap gap-4">
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="cheese" value="Cheese" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="cheese"> Cheese </label>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="mushroom" value="Mushroom" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="mushroom"> Mushroom </label>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="pepper" value="Pepper" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="pepper"> Pepper </label>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="onion" value="Onion" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="onion"> Onion </label>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
|
|
|
</CheckboxGroup>
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.ingredient?.invalid" severity="error" size="small" variant="simple">{{ $form.ingredient.error?.message }}</Message>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-22 12:10:17 +00:00
|
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
2024-10-21 14:45:53 +00:00
|
|
|
</Form>
|
|
|
|
</div>
|
2024-10-22 12:10:17 +00:00
|
|
|
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
|
2024-10-21 14:45:53 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-11-01 21:54:30 +00:00
|
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
2024-10-21 14:45:53 +00:00
|
|
|
import { z } from 'zod';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2024-10-22 09:14:17 +00:00
|
|
|
initialValues: {
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: []
|
2024-10-21 14:45:53 +00:00
|
|
|
},
|
2024-10-22 12:10:17 +00:00
|
|
|
resolver: zodResolver(
|
|
|
|
z.object({
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: z.array(z.string()).min(1, { message: 'At least one ingredient must be selected.' })
|
2024-10-22 12:10:17 +00:00
|
|
|
})
|
|
|
|
),
|
2024-10-21 14:45:53 +00:00
|
|
|
code: {
|
|
|
|
basic: `
|
2024-10-22 09:14:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex justify-center flex-col gap-4">
|
2024-10-21 14:45:53 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-30 10:26:41 +00:00
|
|
|
<CheckboxGroup name="ingredient" class="flex flex-wrap gap-4">
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="cheese" value="Cheese" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="cheese"> Cheese </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="mushroom" value="Mushroom" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="mushroom"> Mushroom </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="pepper" value="Pepper" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="pepper"> Pepper </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="onion" value="Onion" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="onion"> Onion </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
|
|
|
</CheckboxGroup>
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.ingredient?.invalid" severity="error" size="small" variant="simple">{{ $form.ingredient.error?.message }}</Message>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-22 12:10:17 +00:00
|
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
2024-10-21 14:45:53 +00:00
|
|
|
</Form>
|
|
|
|
`,
|
|
|
|
options: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
2024-10-22 12:10:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex justify-center flex-col gap-4">
|
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-30 10:26:41 +00:00
|
|
|
<CheckboxGroup name="ingredient" class="flex flex-wrap gap-4">
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="cheese" value="Cheese" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="cheese"> Cheese </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="mushroom" value="Mushroom" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="mushroom"> Mushroom </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="pepper" value="Pepper" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="pepper"> Pepper </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="onion" value="Onion" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="onion"> Onion </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
|
|
|
</CheckboxGroup>
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.ingredient?.invalid" severity="error" size="small" variant="simple">{{ $form.ingredient.error?.message }}</Message>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
|
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
|
|
</Form>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-22 12:10:17 +00:00
|
|
|
<Toast />
|
2024-10-21 14:45:53 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-11-01 21:54:30 +00:00
|
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
2024-10-22 12:10:17 +00:00
|
|
|
import { z } from 'zod';
|
|
|
|
|
2024-10-21 14:45:53 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2024-10-22 12:10:17 +00:00
|
|
|
initialValues: {
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: []
|
2024-10-22 12:10:17 +00:00
|
|
|
},
|
|
|
|
resolver: zodResolver(
|
|
|
|
z.object({
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: z.array(z.string()).min(1, { message: 'At least one ingredient must be selected.' })
|
2024-10-22 12:10:17 +00:00
|
|
|
})
|
|
|
|
),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onFormSubmit({ valid }) {
|
|
|
|
if (valid) {
|
|
|
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
|
|
}
|
2024-10-21 14:45:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\/script>
|
|
|
|
|
|
|
|
`,
|
|
|
|
composition: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
2024-10-22 12:10:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex justify-center flex-col gap-4">
|
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-30 10:26:41 +00:00
|
|
|
<CheckboxGroup name="ingredient" class="flex flex-wrap gap-4">
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="cheese" value="Cheese" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="cheese"> Cheese </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="mushroom" value="Mushroom" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="mushroom"> Mushroom </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="pepper" value="Pepper" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="pepper"> Pepper </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
2024-10-24 14:45:31 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2024-10-24 14:40:35 +00:00
|
|
|
<Checkbox inputId="onion" value="Onion" />
|
2024-10-24 14:45:31 +00:00
|
|
|
<label for="onion"> Onion </label>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
|
|
|
</CheckboxGroup>
|
2024-10-30 10:26:41 +00:00
|
|
|
<Message v-if="$form.ingredient?.invalid" severity="error" size="small" variant="simple">{{ $form.ingredient.error?.message }}</Message>
|
2024-10-22 12:10:17 +00:00
|
|
|
</div>
|
|
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
|
|
|
</Form>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
2024-10-22 12:10:17 +00:00
|
|
|
<Toast />
|
2024-10-21 14:45:53 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
2024-11-01 21:54:30 +00:00
|
|
|
import { zodResolver } from '@primevue/forms/resolvers/zod';
|
2024-10-22 12:10:17 +00:00
|
|
|
import { useToast } from "primevue/usetoast";
|
|
|
|
import { z } from 'zod';
|
2024-10-21 14:45:53 +00:00
|
|
|
|
2024-10-22 12:10:17 +00:00
|
|
|
const toast = useToast();
|
|
|
|
const initialValues = ref({
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: []
|
2024-10-22 12:10:17 +00:00
|
|
|
});
|
|
|
|
const resolver = ref(zodResolver(
|
|
|
|
z.object({
|
2024-10-30 10:26:41 +00:00
|
|
|
ingredient: z.array(z.string()).min(1, { message: 'At least one ingredient must be selected.' })
|
2024-10-22 12:10:17 +00:00
|
|
|
})
|
|
|
|
));
|
|
|
|
|
|
|
|
const onFormSubmit = ({ valid }) => {
|
|
|
|
if (valid) {
|
|
|
|
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
|
|
}
|
|
|
|
};
|
2024-10-21 14:45:53 +00:00
|
|
|
<\/script>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onFormSubmit({ valid }) {
|
|
|
|
if (valid) {
|
|
|
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|