diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index c34b6d0..e2f1722 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -17,12 +17,13 @@ @updateReaction="handleUpdateReaction" /> -
+
@@ -122,9 +123,9 @@ 'update:password', ]); - const filterInput = (event) => { - event.target.value = event.target.value.replace(/\s/g, ""); // 공백 제거 - emit("update:password", event.target.value); + const filterInput = event => { + event.target.value = event.target.value.replace(/\s/g, ''); // 공백 제거 + emit('update:password', event.target.value); }; const localEditedContent = ref(props.comment.content); diff --git a/src/components/board/BoardCommentArea.vue b/src/components/board/BoardCommentArea.vue index fcfd8e3..ee41350 100644 --- a/src/components/board/BoardCommentArea.vue +++ b/src/components/board/BoardCommentArea.vue @@ -41,6 +41,7 @@ type="password" id="basic-default-password" class="form-control flex-grow-1" + autocomplete="new-password" v-model="password" placeholder="비밀번호 입력" @input="passwordAlertTextHandler" @@ -103,8 +104,8 @@ textAlert.value = ''; }; - const passwordAlertTextHandler = (event) => { - event.target.value = event.target.value.replace(/\s/g, ""); + const passwordAlertTextHandler = event => { + event.target.value = event.target.value.replace(/\s/g, ''); passwordAlert2.value = ''; }; diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue index f86ec1c..c9c5306 100644 --- a/src/components/board/BoardProfile.vue +++ b/src/components/board/BoardProfile.vue @@ -20,8 +20,10 @@
diff --git a/src/components/button/EditBtn.vue b/src/components/button/EditBtn.vue index 89e8307..5ee75a7 100644 --- a/src/components/button/EditBtn.vue +++ b/src/components/button/EditBtn.vue @@ -1,39 +1,40 @@ diff --git a/src/views/board/BoardView.vue b/src/views/board/BoardView.vue index e918796..6caf0f3 100644 --- a/src/views/board/BoardView.vue +++ b/src/views/board/BoardView.vue @@ -26,7 +26,7 @@