MCPcopy Index your code
hub / github.com/logaretm/vee-validate

github.com/logaretm/vee-validate @v4.15.1 sqlite

repository ↗ · DeepWiki ↗ · release v4.15.1 ↗
543 symbols 1,817 edges 185 files 30 documented · 6% 2 cross-repo links
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

Emeriti

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

⚖️ License

Released under MIT by @logaretm.

Extension points exported contracts — how you extend this code

FieldValidationContext (Interface)
* Used internally
packages/vee-validate/src/validate.ts
PartialI18nDictionary (Interface)
(no doc)
packages/i18n/src/index.ts
VeeValidateNuxtOptions (Interface)
(no doc)
packages/nuxt/src/module.ts
FieldValidationMetaInfo (Interface)
(no doc)
packages/shared/types.ts
Frontmatter (Interface)
(no doc)
docs/src/utils/seo.ts
ErrorMessageSlotProps (Interface)
(no doc)
packages/vee-validate/src/ErrorMessage.ts
NuxtConfig (Interface)
(no doc)
packages/nuxt/src/module.ts
VeeValidateConfig (Interface)
(no doc)
packages/vee-validate/src/config.ts

Core symbols most depended-on inside this repo

flushPromises
called by 849
packages/vee-validate/tests/helpers/index.ts
mountWithHoc
called by 408
packages/vee-validate/tests/helpers/index.ts
validate
called by 328
packages/vee-validate/src/useForm.ts
setValue
called by 265
packages/vee-validate/tests/helpers/index.ts
useField
called by 211
packages/vee-validate/src/useField.ts
useForm
called by 167
packages/vee-validate/src/useForm.ts
isEqual
called by 135
packages/vee-validate/src/utils/assertions.ts
setChecked
called by 47
packages/vee-validate/tests/helpers/index.ts

Shape

Function 427
Method 56
Interface 54
Class 6

Languages

TypeScript100%

Modules by API surface

packages/vee-validate/src/types/forms.ts74 symbols
packages/vee-validate/src/useForm.ts48 symbols
packages/vee-validate/src/useField.ts21 symbols
packages/vee-validate/src/utils/common.ts18 symbols
packages/vee-validate/src/utils/assertions.ts17 symbols
packages/vee-validate/src/useFieldArray.ts17 symbols
packages/vee-validate/src/useFieldState.ts16 symbols
packages/vee-validate/src/validate.ts15 symbols
packages/i18n/src/index.ts15 symbols
packages/vee-validate/tests/FieldArray.spec.ts14 symbols
packages/vee-validate/src/Field.ts14 symbols
packages/vee-validate/src/devtools.ts13 symbols

Used by 2 indexed graphs manifest dependencies, hub-wide

Dependencies from manifests, versioned

@astrojs/mdx1.1.5 · 1×
@astrojs/partytown2.0.2 · 1×
@astrojs/sitemap3.0.3 · 1×
@astrojs/vue3.0.4 · 1×
@changesets/cli2.27.1 · 1×
@commitlint/cli19.3.0 · 1×
@commitlint/config-conventional19.2.2 · 1×
@docsearch/css3.5.2 · 1×
@docsearch/js3.5.2 · 1×
@eslint/js9.2.0 · 1×
@floating-ui/dom1.5.3 · 1×

For agents

$ claude mcp add vee-validate \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact