Clear username and password field on failed login

This commit is contained in:
wakarimasen 2017-03-08 19:08:01 +01:00
parent a6b6fe95c0
commit c0e8111d64

View file

@ -10,7 +10,11 @@ const LoginForm = {
submit () {
this.$store.dispatch('loginUser', this.user).then(
() => { this.$router.push('/main/friends')},
() => { this.authError = true }
() => {
this.authError = true
this.user.username = ''
this.user.password = ''
}
)
}
}