akkoma-fe/src/components/login_form/login_form.js

18 lines
320 B
JavaScript
Raw Normal View History

2016-10-27 16:02:41 +00:00
const LoginForm = {
data: () => ({
user: {}
}),
computed: {
loggingIn () { return this.$store.state.users.loggingIn }
},
methods: {
submit () {
2016-10-30 13:25:18 +00:00
this.$store.dispatch('loginUser', this.user).then(() => {
this.$router.push('/main/friends')
})
2016-10-27 16:02:41 +00:00
}
}
}
export default LoginForm