(lint)
This commit is contained in:
parent
e8dbb7b161
commit
01049e67fd
1 changed files with 3 additions and 3 deletions
|
@ -54,15 +54,15 @@ export default {
|
|||
showPassword: false,
|
||||
passwordRules: [v => !!v || 'Password is required'],
|
||||
|
||||
passwordConfirm: '',
|
||||
passwordConfirm: ''
|
||||
}),
|
||||
|
||||
computed: {
|
||||
passwordConfirmRules() {
|
||||
return [
|
||||
() => this.password === this.passwordConfirm || "Passwords must match"
|
||||
() => this.password === this.passwordConfirm || 'Passwords must match'
|
||||
]
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
|
Reference in a new issue