DEV Community

Discussion on: Form Validation with Vuetify in a Vue App

Collapse
 
peppeg85 profile image
peppeg85

solved, simply add the rule

confirmPassword: value => {
return value === this.password || 'Passwords must match'
}