feat: 내 글·댓글 모아보기 화면 + 사이드바 메뉴
CI / build (push) Failing after 12m7s

- MyBoardView(탭: 내 글/내 댓글, 페이징, 글로 이동), /my-board 라우트
- 사이드바 게시판 영역에 내 글·댓글 링크, 헤더 타이틀

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 18:26:16 +09:00
parent 8be7072614
commit 29ff09a8d6
5 changed files with 227 additions and 0 deletions
+6
View File
@@ -59,6 +59,12 @@ const router = createRouter({
component: () => import('../views/board/BoardListView.vue'),
meta: { requiresAuth: true },
},
{
path: '/my-board',
name: 'my-board',
component: () => import('../views/board/MyBoardView.vue'),
meta: { requiresAuth: true },
},
{
path: '/board/:category(community|saving|tips)/write',
name: 'board-write',