[Vuejs]-Having problems on my sign in form for firebase because of Error:"email" must be a valid string."

0👍

Sorry was my own mistake!!!…should really review my code over and over before doing stupid questions guys.Really sorry….!!!
On the method linked to my form action i just call the action of my managment state

<form @submit.prevent="signUserIn">WRONG

instead of having called the method in my component which is the one in charge to then call the action from Vuex

<form @submit.prevent=" signingIn">CORRECT

Thanks to Renaud Tarnec for the time and interest on answer my question. And really sorry !!!

Leave a comment