I wish to display an arrow in between my looped v-for divs, but not on the last one. How can I achieve this in Vue JS? Ideally I'd the loop to break and not control this element at all, but may have to go with a css last of type solution.
<div class="row">
<div v-for="events in list.events" >
<div class="medium-4 columns" >
<div class="card">
<img src="http://placehold.it/400x200"></br>
@{{events.title}}
@{{events.start}} - @{{events.end}}
</div>
</div>
<div class="medium-1 columns arrow" >
<i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
</div>
</div>
</div>