<template>
<div class="container">
<accordion v-for="(item, index) in typeMeasurement" :key="index" :title="item.name">
<table class="table">
<tbody class="table__body" v-html="creatTable(item.items)">
</tbody>
</table>
</accordion>
</div>
</template>
по этому я не смог использовать v-for
<template>
<div class="container">
<accordion v-for="(table, index) in computedTypeMeasurement" :key="index" :title="table.name">
<table class="table">
<tbody class="table__body">
<tr v-for="row in table" :key="row.id">
<td v-for="col in row.cols" :key="col.id">
<Comp :data="col"/>
</td>
</tr>
</tbody>
</table>
</accordion>
</div>
</template>html в vue надо использовать примерно никогда.