Add LoginForm.

This commit is contained in:
Roger Braun 2016-10-27 18:02:41 +02:00
parent a7ea9c5195
commit 51c0b6dfd3
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,15 @@
const LoginForm = {
data: () => ({
user: {}
}),
computed: {
loggingIn () { return this.$store.state.users.loggingIn }
},
methods: {
submit () {
this.$store.dispatch('loginUser', this.user)
}
}
}
export default LoginForm