From c90ce680fc65e4004a4d20b361e74e536b7993be Mon Sep 17 00:00:00 2001 From: yoon Date: Fri, 28 Mar 2025 15:57:56 +0900 Subject: [PATCH] =?UTF-8?q?min=20=EC=82=AD=EC=A0=9C?= 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 deletions(-) diff --git a/src/components/input/UserFormInput.vue b/src/components/input/UserFormInput.vue index 36c4573..b3eebd4 100644 --- a/src/components/input/UserFormInput.vue +++ b/src/components/input/UserFormInput.vue @@ -14,7 +14,6 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" - :minLength="minlength" :placeholder="title" @blur="$emit('blur')" /> @@ -30,7 +29,6 @@ :value="computedValue" :disabled="disabled" :maxLength="maxlength" - :minLength="minlength" :placeholder="title" @blur="$emit('blur')" @click="handleDateClick" @@ -81,11 +79,6 @@ default: 30, required: false, }, - minlength: { - type: Number, - default: 4, - required: false, - }, isAlert: { type: Boolean, default: false,