Skip to content

Instantly share code, notes, and snippets.

@plcosta
Created August 10, 2016 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plcosta/1f1281b04bfbb0008a28630003b232c1 to your computer and use it in GitHub Desktop.
Save plcosta/1f1281b04bfbb0008a28630003b232c1 to your computer and use it in GitHub Desktop.
Vuejs v-for with index
<div class="col-md-4" v-for="(index, group) in wards" track-by="$index">
<div class="ibox">
<div class="ibox-title"><strong>{{ index }}</strong></div>
<div class="ibox-content">
<div class="col-md-2 bed" v-for="patient in group">
<a v-link="" v-if="patient.id" class="bed-default">{{ patient.bed_id }}</a>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment