I'm trying to loop through 3 photos, that should be output in 2 columns. The 1st photo in the first column and then the remaining 2 in the 2nd, inside a row. There will be multiple rows of the same type of data.
This is what I have so far, but each image renders in a separate column.
<b-row>
<template v-for="(item, index) in slice.items">
<b-col :key="item.id" v-if="index == 0" class="gallery-item">
<img :field="item.photo" class="img-fluid"/>
</b-col>
<template v-if="index == 1 || index == 2">
<b-col :key="item.id" class="gallery-item">
<img :field="item.photo" class="img-fluid"/>
</b-col>
</template>
</template>
</b-row>