If I set to Vue.data array like this [0: Object, 2: Object];
I will get in Vue console log panel array like this [0: Object, 1: undefined 2: Object];
and after iteration in 'v-for="cell in row.cells"' I got the problem of getting any property of undefined.
I resolved my problem like this:
v-for="cell in row.cells" v-bind:colspan="cell.colspan" v-if="typeof cell !== 'undefined'"
v-for="cell in row.cells" v-bind:colspan="cell.colspan" v-if="typeof cell !== 'undefined'"
I want to get in Vue array as I've tried to set without index shift or any array changings.