Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created March 31, 2020 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akifcan/558958230faad99bcd6f2f2ccd325071 to your computer and use it in GitHub Desktop.
Save Akifcan/558958230faad99bcd6f2f2ccd325071 to your computer and use it in GitHub Desktop.
example 2
correct(
[
{
value: name,
fieldName: 'name',
validations: [
{
'type': 'required',
},
{
'type': 'min|5',
'message': 'name must be at least 5 character',
},
{
'type': 'max|15',
'message': 'name not be greater than 15 character'
},
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment