Skip to content

Instantly share code, notes, and snippets.

@rugor
Created January 31, 2017 00:25
Show Gist options
  • Save rugor/6131cd28cb51f0c70238dacb9e1a494b to your computer and use it in GitHub Desktop.
Save rugor/6131cd28cb51f0c70238dacb9e1a494b to your computer and use it in GitHub Desktop.
JavaScript: Vue.js v-for with index and last item class #rugor
<div v-for="(item, index) in items" v-bind:class="{last : index === (items.length-1)}">
<p>Foo</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment