When using the vuex-easy-access plugin together with vuex-easy-firestore the following action doesn't work as expected:
State:
{keyPeople: []}
Action:
dispatch('set/keyPeople.push', payload);
Instead of pushing the payload object into the array, the vuex-easy-firestore set action gets triggered resulting in a push property being created on a keyPeople object in Firestore and the payload object then gets assigned to that property.
When using the vuex-easy-access plugin together with vuex-easy-firestore the following action doesn't work as expected: State:
{keyPeople: []}
Action:
dispatch('set/keyPeople.push', payload);
Instead of pushing the payload object into the array, the vuex-easy-firestore set action gets triggered resulting in a
push
property being created on akeyPeople
object in Firestore and thepayload
object then gets assigned to that property.