I know I can use Vue.set to modify a single element in an array:
https://v2.vuejs.org/v2/guide/list.html#Caveats
But how can I modify a single element in a nested array or nested object/array? Perhaps it my data looks like this:
data:{
lists:[[1,2,3],[2,3,4]],
another_list:[[213,123, {hello:'sdf'}], 12, 123]
}
How can I edit every single element reactively?