1.0.0 • Published 6 years ago
vue-input-validate v1.0.0
HTML5 input validation components for VueJS
Components
- Password
Input password help you to validate user's input.
- Reference - https://www.w3resource.com/javascript/form/password-validation.php
- Example
<VueHoneyInput type="password" password="alphanumeric" min="5" max="20"></VueHoneyInput>
Password component allowed accepted options
Options | Type | Default | Value |
---|---|---|---|
type | string | "password" | none |
password | string | "alphanumeric" | "alphanumeric", "alphanumeric_camelcase", "alphanumeric_specialcharacter", "alphanumeric_specialcharacter_camelcase" |
min | integer | 0 | 0 - 255 |
max | integer | 255 | 0 - 255 |
- Password
Value | Description |
---|---|
alphanumeric | which contain only characters, numeric digits and underscore |
alphanumeric_camelcase | which contain at least one numeric digit, one uppercase and one lowercase letter. |
alphanumeric_specialcharacter | which contain at least one numeric digit, one uppercase and one lowercase letter. |
alphanumeric_specialcharacter_camelcase | which contain at least one numeric digit and a special character. |
1.0.0
6 years ago