-
diff --git a/src/components/user/LikedPosts.vue b/src/components/user/LikedPosts.vue
index 47cf033..e8b8f27 100644
--- a/src/components/user/LikedPosts.vue
+++ b/src/components/user/LikedPosts.vue
@@ -7,7 +7,7 @@
전체 {{ totalCount }}개
-
@@ -49,6 +49,7 @@
},
});
+ console.log(response.data);
likedPosts.value = [...likedPosts.value, ...response.data.docsInfoList];
currentPage.value++;
} catch (error) {
@@ -67,6 +68,7 @@
}
function goToPostDetail(postId) {
+ console.log(postId);
router.push(`/wiki/detail/${postId}`);
}
diff --git a/src/views/Header.vue b/src/views/Header.vue
index 9b65a58..282212c 100644
--- a/src/views/Header.vue
+++ b/src/views/Header.vue
@@ -16,7 +16,7 @@
-
+
diff --git a/src/views/Study.vue b/src/views/Study.vue
index 05a0184..50929df 100644
--- a/src/views/Study.vue
+++ b/src/views/Study.vue
@@ -1,7 +1,7 @@
-
+
+ 스터디가 존재하지 않습니다.
@@ -54,6 +55,7 @@ async function getUserCategory() {
function setCategory() {
studyTab.value = categoryList.value.filter(category => category.topTabName === "스터디").map(category => category);
+ console.log(studyTab.value);
selectedTab.value = studyTab.value[0].tabId;
}
@@ -64,4 +66,13 @@ function setCategory() {
justify-content: space-between;
margin-bottom: 10px;
}
+
+.no-study-message {
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ vertical-align: middle;
+ margin-top: 20px;
+}