newCell(v-if="showCell")
show : false,
showCell () {
this.show = true;
}
data: () => ({
repeat: 0,
}),<child-component v-for="i in repeat"></child-component><button @click="repeat++">add one more child component instance</button>