0👍
In the line where you pass the user you put it in an object under the name user
.
let promise = dispatch('fetchUser', {user});
So you have to access the user.uid
like user.user.uid
, just pass the user
object. Like so:
let promise = dispatch('fetchUser', user);
If you add a catch
to the promise the that one will be fired bec
- [Vuejs]-In VueJS, is there a way to make your binded styling react to the size change of the screen?
- [Vuejs]-Bug when using v-model causing the input field to be deselected after each keystroke
Source:stackexchange.com