I'm starting to face this issue more and more often and am wondering if there is a simple solution to this. Kinda stuck trying to loop through a set of data into a row/child kind of structure.
Here's what I'm trying to achieve.
<div class="row">
<div>Data 1</div>
<div>Data 2</div>
<div class="row">
<div>Data 3</div>
...
What I ended doing most of the time is to just now house my data loops into a row, etc. But it prevented me from displaying my data in a more customised way... Is there a better way?
<div v-for="item in items">
<div class="row">
<div>{{ item.message }}</div>
</div>
</div>
Like after 3 item.messages, a new row will spawn, etc?