]>
git.r.bdr.sh - rbdr/dasein/blob - app/components/comment.js
5 export default internals
.CommentComponent
= Vue
.component('comment', {
6 template: '<article class="comment">' +
7 '<aside class="comment-meta">' +
8 '<img :src="comment.userImage" v-bind:alt="\'Avatar for @\' + comment.userId">' +
9 '<a v-bind:href="\'https://twitter.com/\' + comment.userId">{{comment.userName}}</a> said on ' +
10 '<time v-bind:datetime="comment.timestamp | datetime">{{comment.timestamp | usertime}}</time>' +
12 '<div class="comment-content">{{comment.content}}</div>' +