vue-input-validator
Validate inputs using vue
Setup
;;// import Promise from 'your-promise-lib'; Vue;
Basic Usage
Simple
Invalid input
// Creates a new scope for the validator validate: true; // .... methods: { this$validator ; } ;
Rules
Register a new validation rule
/* If the rule returns false or throw, it is an error If the rule returns true | null | undefined. It is kept If the rule return anything else, it is kept on the chain and the next rule will be called with that value*/// Register a number ruleVueInputValidator;