I have an array of "tile data" and I am trying to achieve the following pattern:
<div class="mosaic-root">
<div class="mosaic-tile"></div>
<div class="mosaic-split"></div>
<div class="mosaic-tile"></div>
<div class="mosaic-split"></div>
<div class="mosaic-tile"></div>
</div>
I don't want to have wrappers around one tile and split for example, since the point is to have the splits right next to two tiles. Is this achievable with v-for?