org.webjars.npm:vee-validate

4.15.0last stable release 2 months ago
Complexity Score
High
Open Issues
N/A
Dependent Projects
1

License

  • MIT
    • Yesattribution
    • Permissivelinking
    • Permissivedistribution
    • Permissivemodification
    • Nopatent grant
    • Yesprivate use
    • Permissivesublicensing
    • Notrademark grant

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.

Composition API

The fastest way to create a form and manage its validation, behavior, and values is with the composition API.

Create your form with useForm and then use defineField to create your field model and props/attributes and handleSubmit to use the values and send them to an API.

<script setup>
import { useForm } from 'vee-validate';

// Validation, or use `yup` or `zod`
function required(value) {
  return value ? true : 'This field is required';
}

// Create the form
const { defineField, handleSubmit, errors } = useForm({
  validationSchema: {
    field: required,
  },
});

// Define fields
const [field, fieldProps] = defineField('field');

// Submit handler
const onSubmit = handleSubmit(values => {
  // Submit to API
  console.log(values);
});
</script>

<template>
  <form @submit="onSubmit">
    <input v-model="field" v-bind="fieldProps" />
    <span>{{ errors.field }}</span>

    <button>Submit</button>
  </form>
</template>

You can do so much more than this, for more info check the composition API documentation.

Declarative Components

Higher-order components can also be used to build forms. Register the Field and Form components and create a simple required validator:

<script setup>
import { Field, Form } from 'vee-validate';

// Validation, or use `yup` or `zod`
function required(value) {
  return value ? true : 'This field is required';
}

// Submit handler
function onSubmit(values) {
  // Submit to API
  console.log(values);
}
</script>

<template>
  <Form v-slot="{ errors }" @submit="onSubmit">
    <Field name="field" :rules="required" />

    <span>{{ errors.field }}</span>

    <button>Submit</button>
  </Form>
</template>

The Field component renders an input of type text by default but you can control that

๐Ÿ“š 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
  • Nested path types by react-hook-form
  • Logo by Baianat

Emeriti

Here we honor past contributors and sponsors who have been a major part on this project.

  • Baianat.

โš–๏ธ License

Released under MIT by @logaretm.

Dependencies

No runtime dependency information found for this package.

CVE IssuesActive
0
Scorecards Score
2.40
Test Coverage
No Data
Follows Semver
Yes
Github Stars
10,975
Dependenciestotal
0
DependenciesOutdated
0
DependenciesDeprecated
0
Threat Modelling
No Data
Repo Audits
No Data

Learn how to distribute org.webjars.npm:vee-validate in your own private Maven registry

mvn install org.webjars.npm:vee-validate
Processing...
Done

32 Releases