import Vue from 'vue'; const internals = {}; export default internals.CommentComponent = Vue.component('comment', { template: '
' + '' + '
{{comment.content}}
' + '
', props: ['comment'] });