simple-vue-validator
simple-vue-validator copied to clipboard
A simple yet flexible validator library for vue.js
Bumps [jquery](https://github.com/jquery/jquery) from 3.3.1 to 3.5.0. Commits 7a0a850 3.5.0 8570a08 Release: Update AUTHORS.txt da3dd85 Ajax: Do not execute scripts for unsuccessful HTTP responses 065143c Ajax: Overwrite s.contentType with content-type header...
Hi, thx for awesome validator. But im have trouble.. when in try validate multicomponent form, child not validate if this.validate has error below child component for example ``` field=name field=email...
When trying to validate a undefined value on model throw an error. even thought docs says required() method suppose to check empty/null/undefined null value by the way works fine
Kinda like how `$validate` works, only reset the field or array of fields passed.
the ability to add an error AFTER an asynch function is helpful and possible using `this.validation.addError('myField', messages.MY_ERROR);` would be helpful to include it in documentation
Hi all, I know the project is dormant currently but perhaps someone might know why async validations that is "overwritten" by a second async call succeeds eg. let success =...
I know it isn't a huge dependency, but it would be nice to let users do their own polyfilling, especially for something like `Promise`, which is pretty widely implemented in...
It is possible to add validation rules after loading a set of fields. For example, if the set of fields depends on the select. Need create method ``` validate: function()...
Hi all, I'm looking to implement validation feedback as follows: 1. only show errors when input value has changed and focus is lost e.g user moves to the next field....