From 8c6e54316ae11275209f05571d57a255b29b9478 Mon Sep 17 00:00:00 2001 From: yoon Date: Tue, 18 Mar 2025 15:50:29 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8=204?= =?UTF-8?q?=EC=9E=90=EB=A6=AC=20=EC=9D=B4=EC=83=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/input/UserFormInput.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/input/UserFormInput.vue b/src/components/input/UserFormInput.vue index 7ffbf7d..f5517e8 100644 --- a/src/components/input/UserFormInput.vue +++ b/src/components/input/UserFormInput.vue @@ -14,6 +14,7 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" + :minLength="minlength" :placeholder="title" @blur="$emit('blur')" /> @@ -29,6 +30,7 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" + :minLength="minlength" :placeholder="title" @blur="$emit('blur')" /> @@ -77,6 +79,11 @@ default: 30, required: false, }, + minlength: { + type: Number, + default: 4, + required: false, + }, isAlert: { type: Boolean, default: false,