Vue.js: Show object/array as comma-separated list on a v-for
<!-- This is how you get a comma-separated list of items in Vue.js 2.0, | |
without a comma at the end of the last item --> | |
<p v-for="(item, index) in items"> | |
{{author}}<span v-if="index != (items.length - 1)">,</span> | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Nice! Thanks