Post replies list

This commit is contained in:
2025-11-06 23:47:12 +08:00
parent 9e78814f6b
commit 8cc1437007
7 changed files with 446 additions and 7 deletions

View File

@@ -70,6 +70,10 @@
<!-- Attachments within Content Section -->
<attachment-list :attachments="post.attachments || []" />
</v-card>
<v-card title="Replies" prepend-icon="mdi-comment-text-multiple" color="transparent" flat>
<replies-list :params="{ postId: post.id }" />
</v-card>
</div>
<!-- Sidebar Column -->
@@ -162,7 +166,9 @@ const {
const post = computed(() => postData.value?.post || null)
const htmlContent = computed(() => postData.value?.html || "")
const classesContent = computed(() => postData.value?.post.type == 1 ? 'prose-xl' : 'prose-md');
const classesContent = computed(() =>
postData.value?.post.type == 1 ? "prose-xl" : "prose-md"
)
useHead({
title: computed(() => {