With bootstrap-vue, I make listing of items and I need to make items in 2 columns in big devices. Looks like
<b-container fluid="sm" v-for="nextAd in ads" :key="nextAd.id">
<div style="border: 2px dotted green">
{{ nextAd.id }}=>{{ nextAd.title }}
</div>
</b-container>
But I failed, as I have always items in 1 column. Which way is correct ?
"bootstrap-vue": "^2.1.0"
"vue": "^2.6.10"
Thanks!