I need to create a table that includes several v-if and v-for statements. Here is my current attempt:
<table>
<span v-for="(option, optionk) in bundle_item.build_options" v-bind:key="optionk">
<span v-for="(obj, key) in bundle_item.bundle_subs_object" v-bind:key="'k' +key">
<span v-if="option == key">
<span v-for="(instance, instancek) in obj" v-bind:key="instancek">
<tr>
<td>
{{instance.name}}
</td>
</tr>
</span>
</span>
</span>
</span>
</table>
How can I achieve this complex structure within a table format?