From 71f6abc61f6cd13072a4739e7314f89fac79ccaf Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Thu, 9 Jan 2025 10:06:59 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9C=B4=EA=B0=80,=EB=B2=84=ED=8A=BC=EC=BB=B4?= =?UTF-8?q?=ED=8F=AC=EB=84=8C=ED=8A=B8=EC=B6=94=EA=B0=80=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jsconfig.json | 4 +- src/components/board/BoardComment.vue | 12 +- src/components/board/BoardProfile.vue | 14 +- src/components/button/DeleteButton.vue | 13 ++ src/components/button/EditButton.vue | 13 ++ src/components/button/PlusButton.vue | 13 ++ src/layouts/TheMenu.vue | 6 + src/router/index.js | 6 +- src/stores/calendarStore.js | 20 +++ src/views/AddEventModal.vue | 55 +++++++ src/views/{ => vacation}/MainView.vue | 0 src/views/vacation/ProfileList.vue | 56 +++++++ src/views/vacation/VacationManagement.vue | 181 ++++++++++++++++++++++ 13 files changed, 376 insertions(+), 17 deletions(-) create mode 100644 src/components/button/DeleteButton.vue create mode 100644 src/components/button/EditButton.vue create mode 100644 src/components/button/PlusButton.vue create mode 100644 src/stores/calendarStore.js create mode 100644 src/views/AddEventModal.vue rename src/views/{ => vacation}/MainView.vue (100%) create mode 100644 src/views/vacation/ProfileList.vue create mode 100644 src/views/vacation/VacationManagement.vue diff --git a/jsconfig.json b/jsconfig.json index 6b1facb..9c6d24a 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -6,8 +6,8 @@ "@/*" : ["src/*"], "@a/*": ["src/assets/*"], "@c/*": ["src/components/*"], - "@v/*": ["src/view/*"], - "@l/*": ["src/layout/*"], + "@v/*": ["src/views/*"], + "@l/*": ["src/layouts/*"], "@s/*": ["src/stores/*"], "@p/*": ["src/common/plugin/*"], "@api": ["./src/common/axios-interceptor.js"] diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index ecb3fec..bc718f3 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -3,13 +3,12 @@
  • 저도 궁금합니다.
    - +
    • 저도 궁금합니다.
      -
    @@ -17,13 +16,13 @@
  • 저도 궁금합니다.
    - +
  • - +
    저도 궁금합니다.
    - +
  • @@ -36,6 +35,7 @@ import BoardProfile from './BoardProfile.vue'; import BoardComentArea from './BoardComentArea.vue'; import { ref, computed } from 'vue'; import Pagination from '../pagination/Pagination.vue'; +import PlusButton from '../button/PlusButton.vue'; const comment = ref(false); @@ -63,4 +63,4 @@ const toggleComment = () => { .btn-text-primary:focus { background-color: transparent } - \ No newline at end of file + diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue index fb0e6bb..359ed9c 100644 --- a/src/components/board/BoardProfile.vue +++ b/src/components/board/BoardProfile.vue @@ -24,12 +24,8 @@