[Vuejs]-Changing Vue Data Object

0👍

So, typically, Vuejs does not watch nested objects. I’d recommend that you rework you code a bit to avoid this. This should help: Vue.js – How to properly watch for nested data

Additionally, it looks like you are trying to reference the Vuex Store object, but you are using the data method rather than the computed method, so you won’t get updates on that.

Leave a comment