2017-08-20 16:51:27 +02:00
|
|
|
<div id="page-comments" page-id="<?= $page->id ?>" class="comments-list" v-cloak>
|
|
|
|
<h3>@{{totalCommentsStr}}</h3>
|
|
|
|
<hr>
|
|
|
|
<comment v-for="(comment, index) in comments" :initial-comment="comment" :index="index" :level=1
|
|
|
|
v-on:comment-added.stop="commentAdded"
|
2017-08-20 17:56:44 +02:00
|
|
|
:current-user-id="currentUserId" :key="comment.id" :permissions="permissions"></comment>
|
2017-08-20 16:51:27 +02:00
|
|
|
<div v-if="canComment">
|
|
|
|
<comment-reply v-on:comment-added.stop="commentAdded" :page-id="<?= $page->id ?>">
|
|
|
|
</comment-reply>
|
|
|
|
</div>
|
2017-05-30 05:32:47 +02:00
|
|
|
</div>
|