Created
January 31, 2017 00:25
-
-
Save rugor/6131cd28cb51f0c70238dacb9e1a494b to your computer and use it in GitHub Desktop.
JavaScript: Vue.js v-for with index and last item class #rugor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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