From 5098e89f2b70c0014dfe1e56cc18c073e4700891 Mon Sep 17 00:00:00 2001 From: o_ER4 Date: Mon, 8 Jul 2024 14:34:43 +0900 Subject: [PATCH 01/10] =?UTF-8?q?Header=E7=94=A8=E3=81=AEchipcard=E3=81=A8?= =?UTF-8?q?avator=E3=81=AE=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 3 +-- src/App.vue | 1 + src/components/chipCard.vue | 9 ++++++++ src/components/iconAvatar.vue | 16 ++++++++++++++ src/pages/DashBoard.vue | 38 +++++++++++++++++++++++++++++++--- src/shared/components/.gitkeep | 0 6 files changed, 62 insertions(+), 5 deletions(-) create mode 100644 src/components/chipCard.vue create mode 100644 src/components/iconAvatar.vue delete mode 100644 src/shared/components/.gitkeep diff --git a/index.html b/index.html index 0297945..ea58979 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,6 @@ /> -
- +
diff --git a/src/App.vue b/src/App.vue index 493214e..6839392 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,6 +4,7 @@
+
diff --git a/src/components/chipCard.vue b/src/components/chipCard.vue new file mode 100644 index 0000000..08bc655 --- /dev/null +++ b/src/components/chipCard.vue @@ -0,0 +1,9 @@ + + + diff --git a/src/components/iconAvatar.vue b/src/components/iconAvatar.vue new file mode 100644 index 0000000..12540c1 --- /dev/null +++ b/src/components/iconAvatar.vue @@ -0,0 +1,16 @@ + + diff --git a/src/pages/DashBoard.vue b/src/pages/DashBoard.vue index 65a33db..9fe7fe1 100644 --- a/src/pages/DashBoard.vue +++ b/src/pages/DashBoard.vue @@ -1,7 +1,39 @@ - + - + diff --git a/src/shared/components/.gitkeep b/src/shared/components/.gitkeep deleted file mode 100644 index e69de29..0000000 From 79a3406da60419577ecd7fc1c2ead3eacbdada58 Mon Sep 17 00:00:00 2001 From: o_ER4 Date: Mon, 8 Jul 2024 14:45:39 +0900 Subject: [PATCH 02/10] =?UTF-8?q?Typo=E3=81=97=E3=81=A6=E3=81=9F=E3=81=AE?= =?UTF-8?q?=E3=81=A7component=E5=90=8D=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/chipCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/chipCard.vue b/src/components/chipCard.vue index 08bc655..e5d1a72 100644 --- a/src/components/chipCard.vue +++ b/src/components/chipCard.vue @@ -1,9 +1,9 @@ From 69fa5501046e3eee4cdbaaaa3a2b5c8c83f25d82 Mon Sep 17 00:00:00 2001 From: o_ER4 Date: Fri, 12 Jul 2024 13:58:35 +0900 Subject: [PATCH 03/10] =?UTF-8?q?=E5=91=BD=E5=90=8D=E8=A6=8F=E5=89=87?= =?UTF-8?q?=E3=81=AE=E4=BF=AE=E6=AD=A3=E3=80=81Header=E5=90=AB=E3=82=80?= =?UTF-8?q?=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E7=AE=A1=E7=90=86=E3=82=92?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/chipCard.vue | 9 ----- src/pages/DashBoard.vue | 37 ++---------------- src/shared/lib/components/Chipcard.vue | 11 ++++++ src/shared/lib/components/Chiptag.vue | 14 +++++++ .../lib/components/Iconavatar.vue} | 2 +- src/shared/lib/components/MainHeader.vue | 39 +++++++++++++++++++ 6 files changed, 69 insertions(+), 43 deletions(-) delete mode 100644 src/components/chipCard.vue create mode 100644 src/shared/lib/components/Chipcard.vue create mode 100644 src/shared/lib/components/Chiptag.vue rename src/{components/iconAvatar.vue => shared/lib/components/Iconavatar.vue} (95%) create mode 100644 src/shared/lib/components/MainHeader.vue diff --git a/src/components/chipCard.vue b/src/components/chipCard.vue deleted file mode 100644 index e5d1a72..0000000 --- a/src/components/chipCard.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/src/pages/DashBoard.vue b/src/pages/DashBoard.vue index 9fe7fe1..88dfe38 100644 --- a/src/pages/DashBoard.vue +++ b/src/pages/DashBoard.vue @@ -1,39 +1,10 @@ - + diff --git a/src/shared/lib/components/Chipcard.vue b/src/shared/lib/components/Chipcard.vue new file mode 100644 index 0000000..8fb678e --- /dev/null +++ b/src/shared/lib/components/Chipcard.vue @@ -0,0 +1,11 @@ + + + diff --git a/src/shared/lib/components/Chiptag.vue b/src/shared/lib/components/Chiptag.vue new file mode 100644 index 0000000..b85ec46 --- /dev/null +++ b/src/shared/lib/components/Chiptag.vue @@ -0,0 +1,14 @@ + + diff --git a/src/components/iconAvatar.vue b/src/shared/lib/components/Iconavatar.vue similarity index 95% rename from src/components/iconAvatar.vue rename to src/shared/lib/components/Iconavatar.vue index 12540c1..0bdc48e 100644 --- a/src/components/iconAvatar.vue +++ b/src/shared/lib/components/Iconavatar.vue @@ -6,7 +6,7 @@ defineProps<{ + + + + From 45407978c432326f7ebe02b2cfd01cf2a137ed23 Mon Sep 17 00:00:00 2001 From: cp-20 Date: Fri, 12 Jul 2024 14:11:00 +0900 Subject: [PATCH 04/10] =?UTF-8?q?ESLint=E3=81=AE=E8=A8=AD=E5=AE=9A?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index b703bec..1f66b20 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -26,7 +26,7 @@ module.exports = { }, ], 'vue/component-api-style': ['error', ['script-setup']], - 'vue/component-name-in-template-casing': ['error', 'kebab-case'], + 'vue/component-name-in-template-casing': ['error', 'pascal-case'], 'vue/custom-event-name-casing': ['error', 'camelCase'], 'vue/v-on-event-hyphenation': ['error', 'always', { autofix: true }], 'vue/v-on-function-call': 'error', From 9505bba165008213ead861173232b5c351a8069b Mon Sep 17 00:00:00 2001 From: cp-20 Date: Fri, 12 Jul 2024 14:15:44 +0900 Subject: [PATCH 05/10] =?UTF-8?q?ESLint=E3=81=AE=E8=A8=AD=E5=AE=9A?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 1f66b20..19f0bd8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -26,7 +26,7 @@ module.exports = { }, ], 'vue/component-api-style': ['error', ['script-setup']], - 'vue/component-name-in-template-casing': ['error', 'pascal-case'], + 'vue/component-name-in-template-casing': ['error', 'PascalCase'], 'vue/custom-event-name-casing': ['error', 'camelCase'], 'vue/v-on-event-hyphenation': ['error', 'always', { autofix: true }], 'vue/v-on-function-call': 'error', From 83720790bfc3791dd8b7371459e6c3f6b5270547 Mon Sep 17 00:00:00 2001 From: o_ER4 Date: Mon, 22 Jul 2024 08:36:19 +0900 Subject: [PATCH 06/10] =?UTF-8?q?FlexBox=E3=81=8C=E6=B8=88=E3=82=93?= =?UTF-8?q?=E3=81=A7=E3=81=AA=E3=81=84=E3=81=91=E3=81=A9=E3=81=BB=E3=81=8B?= =?UTF-8?q?=E3=81=AE=E3=82=B3=E3=83=B3=E3=83=9D=E3=83=BC=E3=83=8D=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=81=AF=E6=B8=88=E3=82=93=E3=81=A0=E3=81=AE=E3=81=A7?= =?UTF-8?q?=E4=B8=80=E6=97=A6=E9=A3=9B=E3=81=B0=E3=81=97=E3=81=BE=E3=81=99?= =?UTF-8?q?=E3=80=81=E5=A4=8F=E6=9C=88=E3=81=95=E3=82=93=E3=81=8C=E5=AE=9F?= =?UTF-8?q?=E8=A3=85=E3=81=A7=E4=BD=BF=E3=81=84=E3=81=9F=E3=81=84=E3=82=89?= =?UTF-8?q?=E3=81=97=E3=81=84=E3=81=A7=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/lib/components/ChipCard.vue | 12 +++++ .../components/{Chiptag.vue => ChipTag.vue} | 11 +++-- src/shared/lib/components/Chipcard.vue | 11 ----- src/shared/lib/components/IconAvatar.vue | 14 ++++++ src/shared/lib/components/Iconavatar.vue | 16 ------- src/shared/lib/components/MainHeader.vue | 45 +++++++++---------- src/shared/lib/components/TextInput.vue | 2 + 7 files changed, 53 insertions(+), 58 deletions(-) create mode 100644 src/shared/lib/components/ChipCard.vue rename src/shared/lib/components/{Chiptag.vue => ChipTag.vue} (50%) delete mode 100644 src/shared/lib/components/Chipcard.vue create mode 100644 src/shared/lib/components/IconAvatar.vue delete mode 100644 src/shared/lib/components/Iconavatar.vue create mode 100644 src/shared/lib/components/TextInput.vue diff --git a/src/shared/lib/components/ChipCard.vue b/src/shared/lib/components/ChipCard.vue new file mode 100644 index 0000000..6298a04 --- /dev/null +++ b/src/shared/lib/components/ChipCard.vue @@ -0,0 +1,12 @@ + + + diff --git a/src/shared/lib/components/Chiptag.vue b/src/shared/lib/components/ChipTag.vue similarity index 50% rename from src/shared/lib/components/Chiptag.vue rename to src/shared/lib/components/ChipTag.vue index b85ec46..501a084 100644 --- a/src/shared/lib/components/Chiptag.vue +++ b/src/shared/lib/components/ChipTag.vue @@ -1,14 +1,13 @@ diff --git a/src/shared/lib/components/Chipcard.vue b/src/shared/lib/components/Chipcard.vue deleted file mode 100644 index 8fb678e..0000000 --- a/src/shared/lib/components/Chipcard.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - diff --git a/src/shared/lib/components/IconAvatar.vue b/src/shared/lib/components/IconAvatar.vue new file mode 100644 index 0000000..43e7cf7 --- /dev/null +++ b/src/shared/lib/components/IconAvatar.vue @@ -0,0 +1,14 @@ + + diff --git a/src/shared/lib/components/Iconavatar.vue b/src/shared/lib/components/Iconavatar.vue deleted file mode 100644 index 0bdc48e..0000000 --- a/src/shared/lib/components/Iconavatar.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/src/shared/lib/components/MainHeader.vue b/src/shared/lib/components/MainHeader.vue index 0ae2111..050c835 100644 --- a/src/shared/lib/components/MainHeader.vue +++ b/src/shared/lib/components/MainHeader.vue @@ -1,39 +1,34 @@ diff --git a/src/shared/lib/components/TextInput.vue b/src/shared/lib/components/TextInput.vue new file mode 100644 index 0000000..2b692fa --- /dev/null +++ b/src/shared/lib/components/TextInput.vue @@ -0,0 +1,2 @@ + + From 3e549c0765064fd304d435989223acf74c0a62f7 Mon Sep 17 00:00:00 2001 From: o_ER4 Date: Mon, 22 Jul 2024 12:10:26 +0900 Subject: [PATCH 07/10] =?UTF-8?q?MainHeader=E3=82=82=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/lib/components/MainHeader.vue | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/shared/lib/components/MainHeader.vue b/src/shared/lib/components/MainHeader.vue index 050c835..a84e9e7 100644 --- a/src/shared/lib/components/MainHeader.vue +++ b/src/shared/lib/components/MainHeader.vue @@ -1,11 +1,13 @@ diff --git a/src/shared/lib/components/MainHeader.vue b/src/shared/lib/components/MainHeader.vue index a84e9e7..3863e66 100644 --- a/src/shared/lib/components/MainHeader.vue +++ b/src/shared/lib/components/MainHeader.vue @@ -1,11 +1,7 @@