Created
January 26, 2020 17:43
-
-
Save mrtampan/f6105e3cf0a0798213da6ab2292ca7a3 to your computer and use it in GitHub Desktop.
komponen.vue
This file contains 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
import { required, minLength } from 'vuelidate/lib/validators' | |
export default { | |
data() { | |
return { | |
username: '', | |
password: '' | |
} | |
}, | |
validations: { | |
username: { | |
required, | |
minLength: minLength(4) | |
}, | |
password: { | |
required, | |
minLength: minLength(4) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment