Add LoginForm.
This commit is contained in:
parent
a7ea9c5195
commit
51c0b6dfd3
2 changed files with 40 additions and 0 deletions
15
src/components/login_form/login_form.js
Normal file
15
src/components/login_form/login_form.js
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue