Description
vee-validate is a template-based validation framework for Vue.js that allows you to validate inputs and display errors.
Being template-based you only need to specify for each input what kind of validators should be used when the value changes. The errors will be automatically generated with 40+ locales supported. Many rules are available out of the box.
This plugin is inspired by PHP Framework Laravel's validation.
vee-validate alternatives and similar libraries
Based on the "Validation" category.
Alternatively, view vee-validate alternatives based on common mentions on social networks and blogs.
-
FormValidation
DISCONTINUED. The best @jquery plugin to validate form fields. Designed to use with Bootstrap + Zurb Foundation + Pure + SemanticUI + UIKit + Your own frameworks. -
Validator, for Bootstrap 3
DISCONTINUED. A user-friendly HTML5 form validation jQuery plugin for Bootstrap 3 -
BootstrapValidator
DISCONTINUED. For anyone who want to use the previous version (BootstrapValidator) -
rdf-validate-shacl
Validate RDF data purely in JavaScript. An implementation of the W3C SHACL specification on top of the RDFJS stack.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of vee-validate or a related project?
README
Painless Vue forms
Features
- ๐ Easy: Declarative validation that is familiar and easy to setup
- ๐งโโ๏ธ Flexible: Synchronous, Asynchronous, field-level or form-level validation
- โก๏ธ Fast: Build faster forms faster with intuitive API and small footprint
- ๐ Minimal: Only handles the complicated form concerns, gives you full control over everything else
- ๐ UI Agnostic: Works with native HTML elements or your favorite UI library components
- ๐ฆพ Progressive: Works whether you use Vue.js as a progressive enhancement or in a complex setup
- โ Built-in Rules: Companion lib with 25+ Rules that covers most needs in most web applications
- ๐ i18n: 45+ locales for built-in rules contributed by developers from all over the world
Getting Started
Installation
# Install with yarn
yarn add vee-validate
# Install with npm
npm install vee-validate --save
Vue version support
The main v4 version supports Vue 3.x only, for previous versions of Vue, check the following the table
vue Version | vee-validate version | Documentation Link |
---|---|---|
2.x |
2.x or 3.x |
v2 or v3 |
3.x |
4.x |
v4 |
Usage
vee-validate offers two styles to integrate form validation into your Vue.js apps.
Declarative Components
Higher-order components are better suited for most of your cases. Register the Field
and Form
components and create a simple required
validator:
import { Field, Form } from 'vee-validate';
export default {
components: {
Field,
Form,
},
methods: {
isRequired(value) {
return value ? true : 'This field is required';
},
},
};
Then use the Form
and Field
components to render your form:
<Form v-slot="{ errors }">
<Field name="field" :rules="isRequired" />
<span>{{ errors.field }}</span>
</Form>
The Field
component renders an input
of type text
by default but you can control that
Composition API
If you want more fine grained control, you can use useField
function to compose validation logic into your component:
import { useField } from 'vee-validate';
export default {
setup() {
// Validator function
const isRequired = value => (value ? true : 'This field is required');
const { value, errorMessage } = useField('field', isRequired);
return {
value,
errorMessage,
};
},
};
Then in your template, use v-model
to bind the value
to your input and display the errors using errorMessage
:
<input name="field" v-model="value" />
<span>{{ errorMessage }}</span>
๐ Documentation
Read the documentation and demos.
Contributing
You are welcome to contribute to this project, but before you do, please make sure you read the contribution guide.
Credits
- Inspired by Laravel's validation syntax
- v4 API Inspired by Formik's
- Logo by Baianat
Emeriti
Here we honor past contributors and sponsors who have been a major part on this project.
โ๏ธ License
*Note that all licence references and agreements mentioned in the vee-validate README section above
are relevant to that project's source code only.