Created
August 14, 2017 13:55
-
-
Save Kelin2025/176246e14940cabd3ce3cf176de0a7a4 to your computer and use it in GitHub Desktop.
Vuelidate-forms demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
forms: { | |
form: { | |
name: { required }, | |
surname: { required }, | |
age: { | |
required, | |
min: value => value >= 18 | |
}, | |
// That one will have a default value | |
test: { | |
required, | |
$value: 'test' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment