pleroma-fe/src/components/login_form/login_form.js
2016-10-30 14:25:18 +01:00

18 lines
320 B
JavaScript

const LoginForm = {
data: () => ({
user: {}
}),
computed: {
loggingIn () { return this.$store.state.users.loggingIn }
},
methods: {
submit () {
this.$store.dispatch('loginUser', this.user).then(() => {
this.$router.push('/main/friends')
})
}
}
}
export default LoginForm