[Vuejs]-Vuex + vuexfire – store objects would not update upon adding data

0👍

How, and where, are you getting the this.fields?

Is it a computed property?

it should be somthing arround the lines of this in order to keep the data updated (vuex documentation)

computed: {
 fields() {
   this.$store.state.fields
 }
}

Leave a comment