23 lines
471 B
JavaScript
23 lines
471 B
JavaScript
const LoginForm = {
|
|
data: () => ({
|
|
user: {},
|
|
authError: false
|
|
}),
|
|
computed: {
|
|
loggingIn () { return this.$store.state.users.loggingIn }
|
|
},
|
|
methods: {
|
|
submit () {
|
|
this.$store.dispatch('loginUser', this.user).then(
|
|
() => { this.$router.push('/main/friends')},
|
|
() => {
|
|
this.authError = true
|
|
this.user.username = ''
|
|
this.user.password = ''
|
|
}
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
export default LoginForm
|