Skip to content

Instantly share code, notes, and snippets.

@Kelin2025
Created August 14, 2017 13:55
Show Gist options
  • Save Kelin2025/176246e14940cabd3ce3cf176de0a7a4 to your computer and use it in GitHub Desktop.
Save Kelin2025/176246e14940cabd3ce3cf176de0a7a4 to your computer and use it in GitHub Desktop.
Vuelidate-forms demo
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