I've got the following for loop
<div class="w3-panel w3-blue w3-card-4"
v-for="peer in peers"
v-bind:key="peer"
>
{{ peer.hop }} {{ peer.time }}
</div>
This is currently producing an individual panel for each peer.hop and peer.time item. How can I get those items to appear together in a single panel per iteration?
Here is an example of HTML generated by this:
<div class="w3-panel w3-blue w3-card-4"> 10.0.0.1 </div>
<div class="w3-panel w3-blue w3-card-4"> 3581895 </div>