Skip to content

Instantly share code, notes, and snippets.

@afontcu
Created December 10, 2017 18:41
Show Gist options
  • Save afontcu/4b3c5e4d8ab7cff2b406f9066afa1334 to your computer and use it in GitHub Desktop.
Save afontcu/4b3c5e4d8ab7cff2b406f9066afa1334 to your computer and use it in GitHub Desktop.
<template>
<ul>
<li v-for="comment in commentList" :key="comment.id">
{{ comment.body }}-{{ comment.author }}
</li>
</ul>
</template>
<script>
export default {
name: 'CommentList',
props: {
commentList: {
type: Array,
required: true
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment