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

16 lines
255 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 () {
2017-03-08 15:54:06 +00:00
this.$store.dispatch('loginUser', this.user)
2016-10-27 16:02:41 +00:00
}
}
}
export default LoginForm