0👍
✅
thanks for your help
i have found the solution:
<vue-tabs class="row" direction="vertical" value="Description">
<div v-for="(siteParts, index) in sitePartLine">
<v-tab :title="sitePartLine[index].serial_no" v-if="sitePartLine[index]">
<div class="description text-left" v-for="siteParts in sitePartLine">
{{ siteParts.fixnet_id }}
<div class="description text-left" v-for="item in siteParts.part_attributes">
<small><strong>{{item.x_name}}</strong> {{item.x_value}}</small>
</div>
</div>
</v-tab>
</div>
</vue-tabs>
Source:stackexchange.com