GithubHelp home page GithubHelp logo

diogenespolanco / vee-validate Goto Github PK

View Code? Open in Web Editor NEW

This project forked from logaretm/vee-validate

0.0 3.0 0.0 6.83 MB

Simple Vue.js input validation plugin

Home Page: http://vee-validate.logaretm.com/

License: MIT License

JavaScript 97.49% Vue 2.47% TypeScript 0.04%

vee-validate's Introduction

codecov Build Status Codacy Badge CDNJS npm npm Average time to resolve an issue Percentage of issues still open


vee-validate is a plugin for Vue.js that allows you to validate input fields and display errors.

You don't have to do anything fancy in your app -- most of the work goes into the html. 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. The plugin offers many validations out of the box.

Although most of the validations occur automatically, you can use the validator however you see fit. The validator object has no dependencies and is a standalone object. This plugin is built with localization in mind. Read the docs for more info.

This plugin is inspired by PHP Framework Laravel's validation.

Installation

npm

npm install vee-validate --save

yarn

yarn add vee-validate

CDN

vee-validate is also available on these cdns:

Getting Started

In your script entry point:

import Vue from 'vue';
import VeeValidate from 'vee-validate';

Vue.use(VeeValidate);

Now you are all setup to use the plugin.

Usage

Just apply the v-validate directive on your input and pass a string value which is a list of validations separated by a pipe. For example, we will use the required and the email validators:

<input v-validate="'required|email'" type="text" name="email">

Alternatively you can pass an object for more flexibility:

<input v-validate="{ required: true, email: true, regex: /[0-9]+/ }" type="text" name="email">

Now every time the input changes, the validator will run the list of validations from left to right, populating the errors helper object whenever an input fails validation.

To access the errors object (in your vue instance):

this.$validator.errorBag;
// or
this.errors; // injected into $data by the plugin, you can customize the property name.

Let's display the error for the email input we've created:

<!-- If it has an email error, display the first message associated with it. -->
<span v-show="errors.has('email')">{{ errors.first('email') }}</span>

Of course there is more to it than that. Refer to the documentation for more details about the rules and usage of this plugin.

Documentation

Read the documentation and demos.

Compatibility

This library uses ES6 Promises so be sure to provide a polyfill for it for the browsers that do not support it.

Contributing

You are welcome to contribute to this repo with anything you think is useful. Fixes are more than welcome. However if you are adding a new validation rule, it should have multiple uses or be as generic as possible.

You can find more information in the contribution guide.

Tutorials and Examples

Credits

license

MIT

vee-validate's People

Contributors

logaretm avatar brandonsurowiec avatar gldraphael avatar stephen2 avatar agentschmitt avatar jonathan-soifer avatar thomhurks avatar judocode avatar imcvampire avatar lomotech avatar grinn avatar giokaxo avatar kacinskas avatar claudioeyzaguirre avatar escapedcat avatar dfcook avatar daviddt avatar omerzfira avatar wrseward avatar chris-griffin avatar pangaunn avatar idrafttt avatar edbizarro avatar gitzjoey avatar murbanowicz avatar rousos87 avatar toilal avatar zppro avatar mzdunek93 avatar mikeaag avatar

Watchers

James Cloos avatar Diógenes Polanco avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.