공지 댓글 삭제

This commit is contained in:
dyhj625 2025-03-27 16:22:17 +09:00
parent 6e14790e41
commit 42987e8554
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<span>{{ date }}</span> <span>{{ date }}</span>
<template v-if="showDetail"> <template v-if="showDetail">
<span class="ms-2"> <i class="fa-regular fa-eye"></i> {{ views }} </span> <span class="ms-2"> <i class="fa-regular fa-eye"></i> {{ views }} </span>
<span class="ms-1"> <i class="bx bx-comment"></i> {{ commentNum }} </span> <span v-if="unknown" class="ms-1"> <i class="bx bx-comment"></i> {{ commentNum }} </span>
</template> </template>
</div> </div>
</div> </div>

View File

@ -92,7 +92,7 @@
@updateReaction="handleUpdateReaction" @updateReaction="handleUpdateReaction"
/> />
</div> </div>
<div v-if="unknown">
<!-- 댓글 입력 영역 --> <!-- 댓글 입력 영역 -->
<BoardCommentArea <BoardCommentArea
:profileName="profileName" :profileName="profileName"
@ -102,6 +102,7 @@
:maxLength="500" :maxLength="500"
@submitComment="handleCommentSubmit" @submitComment="handleCommentSubmit"
/> />
</div>
</div> </div>
<!-- 댓글 목록 --> <!-- 댓글 목록 -->