[Vuejs]-Firebase signInWithEmailAndPassword not working in vue.js

1πŸ‘

βœ…

It is probably because you assign the submit type to your button, your form is submitted before the Firebase method is triggered.

You should change the button code from

 <input type="submit" @click="submit" value="Login" class="btn float-right login_btn" /> 

to

 <input type="button" @click="submit" value="Login" class="btn float-right login_btn" />

See the W3 specification for more detail on button types.

πŸ‘€Renaud Tarnec

Leave a comment