Skip to content

Instantly share code, notes, and snippets.

@afontcu
Created December 10, 2017 18:52
Show Gist options
  • Save afontcu/7d691e8d9f0d524dc28f37c258d26d6f to your computer and use it in GitHub Desktop.
Save afontcu/7d691e8d9f0d524dc28f37c258d26d6f to your computer and use it in GitHub Desktop.
<template>
<CommentList :commentList="commentList">
</template>
<script>
import CommentList from './CommentList'
import { mapGetters } from 'vuex'
export default {
name: 'CommentListContainer',
components: {
CommentList
},
...mapGetters({
commentList: 'getLastComments'
})
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment