i've been trying to trigger Vue DOM updates by updating an array the old way and it obviously wont do it because of the ceveats on Vue detecting object/array changes. I dont know how to access my nested array properties by using Vue.set. Normally i would access and assign my property like this (by the way this is a state in Vuex):
state.timelines[0].events[0].item.info = payload.info
I dont know how to access and assign that property with .set, i've tried a few combinations but they failed to work. Thanks.
timelinesstate before you trying to update it like that? I mean, is it an empty array? If not, is events anemptyarray? And so on.Vue.set(state.timelines[i].events[0].item, 'info', payload.info)and its now working properly. Thanks for your answer.