Skip to content

Instantly share code, notes, and snippets.

@Kelin2025
Last active August 14, 2017 13:54
Show Gist options
  • Save Kelin2025/37aa61ee0adf94e8dc7461426cf7dcd4 to your computer and use it in GitHub Desktop.
Save Kelin2025/37aa61ee0adf94e8dc7461426cf7dcd4 to your computer and use it in GitHub Desktop.
Problem of vuelidate
export default {
data: () => ({
form: {
name: null,
surname: null,
age: null
}
}),
validations: {
form: {
name: { required },
surname { required },
age: {
required,
min: val => val >= 18
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment