From cc748e6d32ebffcc706d7ed4cd7478e38cb95514 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Thu, 19 Dec 2024 11:28:14 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=80=EC=83=89=20=EC=9D=B4=EB=B2=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/search/SearchBar.vue | 4 ++-- src/views/board/BoardList.vue | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/search/SearchBar.vue b/src/components/search/SearchBar.vue index 2f10ae7..d59baed 100644 --- a/src/components/search/SearchBar.vue +++ b/src/components/search/SearchBar.vue @@ -1,6 +1,6 @@ @@ -17,7 +17,7 @@ }); const emits = defineEmits(['update:data']); - const searchInput = function (event) { + const search = function (event) { //Type Number 일때 maxlength 적용 안됨 방지 if (event.target.value.length > props.maxlength) { event.target.value = event.target.value.slice(0, props.maxlength); diff --git a/src/views/board/BoardList.vue b/src/views/board/BoardList.vue index daa0b5d..128c025 100644 --- a/src/views/board/BoardList.vue +++ b/src/views/board/BoardList.vue @@ -1,6 +1,6 @@