2023-03-16 08:37:53 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p><a href="https://vee-validate.logaretm.com/v4/">VeeValidate</a> is a popular library for handling forms in Vue.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<form @submit="onSubmit" class="flex flex-column gap-2">
|
|
|
|
<label for="ac">Value</label>
|
2023-03-16 12:57:15 +00:00
|
|
|
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" aria-describedby="ac-error" />
|
|
|
|
<small id="ac-error" class="p-error">{{ errorMessage || ' ' }}</small>
|
|
|
|
<Button type="submit" label="Submit" />
|
2023-03-16 08:37:53 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" :dependencies="{ 'vee-validate': '4.8.2' }" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { useToast } from 'primevue/usetoast';
|
|
|
|
import { useField, useForm } from 'vee-validate';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
setup() {
|
|
|
|
const { handleSubmit, resetForm } = useForm();
|
|
|
|
const { value, errorMessage } = useField('value', validateField);
|
|
|
|
const toast = useToast();
|
|
|
|
|
|
|
|
function validateField(value) {
|
|
|
|
if (!value) {
|
|
|
|
return 'Value is required.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const onSubmit = handleSubmit((values) => {
|
|
|
|
if (values.value && values.value.length > 0) {
|
|
|
|
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
|
|
|
resetForm();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return { value, handleSubmit, onSubmit, errorMessage };
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [],
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<template>
|
2023-03-16 08:37:53 +00:00
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<form @submit="onSubmit" class="flex flex-column gap-2">
|
|
|
|
<label for="ac">Value</label>
|
2023-03-16 12:57:15 +00:00
|
|
|
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" aria-describedby="ac-error" />
|
|
|
|
<small class="p-error" id="ac-error">{{ errorMessage || ' ' }}</small>
|
|
|
|
<Button type="submit" label="Submit" />
|
2023-03-16 08:37:53 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-10-15 09:38:39 +00:00
|
|
|
</template>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-03-16 08:37:53 +00:00
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<form @submit="onSubmit" class="flex flex-column gap-2">
|
|
|
|
<label for="ac">Value</label>
|
2023-03-16 12:57:15 +00:00
|
|
|
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" aria-describedby="ac-error" />
|
|
|
|
<small class="p-error" id="ac-error">{{ errorMessage || ' ' }}</small>
|
|
|
|
<Button type="submit" label="Submit" />
|
2023-03-16 08:37:53 +00:00
|
|
|
</form>
|
|
|
|
<Toast />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { useToast } from 'primevue/usetoast';
|
|
|
|
import { useField, useForm } from 'vee-validate';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
setup() {
|
|
|
|
const { handleSubmit, resetForm } = useForm();
|
|
|
|
const { value, errorMessage } = useField('value', validateField);
|
|
|
|
const toast = useToast();
|
|
|
|
|
|
|
|
function validateField(value) {
|
|
|
|
if (!value) {
|
|
|
|
return 'Value is required.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const onSubmit = handleSubmit((values) => {
|
|
|
|
if (values.value && values.value.length > 0) {
|
|
|
|
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
|
|
|
resetForm();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return { value, handleSubmit, onSubmit, errorMessage };
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search(event) {
|
|
|
|
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2023-10-15 09:38:39 +00:00
|
|
|
<\/script>
|
|
|
|
`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-03-16 08:37:53 +00:00
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<form @submit="onSubmit" class="flex flex-column gap-2">
|
|
|
|
<label for="ac">Value</label>
|
2023-03-16 12:57:15 +00:00
|
|
|
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" aria-describedby="ac-error" />
|
|
|
|
<small class="p-error" id="ac-error">{{ errorMessage || ' ' }}</small>
|
|
|
|
<Button type="submit" label="Submit" />
|
2023-03-16 08:37:53 +00:00
|
|
|
</form>
|
|
|
|
<Toast />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import { useToast } from 'primevue/usetoast';
|
|
|
|
import { useField, useForm } from 'vee-validate';
|
|
|
|
|
|
|
|
const { handleSubmit, resetForm } = useForm();
|
|
|
|
const { value, errorMessage } = useField('value', validateField);
|
|
|
|
const toast = useToast();
|
|
|
|
const items = ref([]);
|
|
|
|
|
|
|
|
function validateField(value) {
|
|
|
|
if (!value) {
|
|
|
|
return 'Value is required.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const onSubmit = handleSubmit((values) => {
|
|
|
|
if (values.value && values.value.length > 0) {
|
|
|
|
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
|
|
|
resetForm();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const search = (event) => {
|
|
|
|
items.value = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
|
|
};
|
|
|
|
<\/script>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search(event) {
|
|
|
|
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|