diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index cd3ee2f..d07e117 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -65,7 +65,7 @@
πŸ“Œ - {{ notice.title }} + {{ truncateTitle(notice.title) }} [ {{ notice.commentCount }} ] @@ -95,7 +95,7 @@ {{ post.id }}
- {{ post.title }} + {{ truncateTitle(post.title) }} [ {{ post.commentCount }} ] { + return title.length > 28 ? title.slice(0, 28) + '...' : title; + }; + // 둜컬 μŠ€ν† λ¦¬μ§€ ν•„ν„° μ €μž₯ const saveFilterToStorage = seq => { const query = { diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index a29c575..2a7c81e 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -80,7 +80,7 @@ >
-
+
-
+
-