Created
March 31, 2020 12:30
-
-
Save Akifcan/558958230faad99bcd6f2f2ccd325071 to your computer and use it in GitHub Desktop.
example 2
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
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