This is a Vue composition API function that allows you to do form validation, powered by vee-validate.
Not production ready yet, clone the repo if you need it.
In your component file:
import { ref } from '@vue/composition-api';
import { useValidation } from 'vee-validate-composition-api';
export default {
setup() {
const input = ref('');
const { errors, flags } = useValidation(input, 'required');
return { input, errors };
}
};
In your Template:
<input v-model="input" type="text">
<span>{{ errors[0] }}</span>
The useValidation
method accepts a ref which is the input initial value, and a rules expression which can be a string or a ref for a string.
It returns the following members:
Prop | Type | Description |
---|---|---|
flags | ValidationFlags | Object containing vee-validate flags for that field. |
errors | string[] | list of validation errors |
validate | () => ValidationResult | Triggers validation for the field. |
reset | () => void | Resets validation state for the field. |
onInput | () => void | Updates some flags when the user inputs, you should bind it to the element. |
onBlur | () => void | Updates some flags when the user focuses the field, you should bind it to the element. |
MIT