From 8e0700a659f27ac535bc3fcf2473e36106439a1c Mon Sep 17 00:00:00 2001 From: khj0414 Date: Tue, 25 Feb 2025 15:56:52 +0900 Subject: [PATCH] =?UTF-8?q?min=20required=20=EC=86=8D=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/input/FormInput.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/input/FormInput.vue b/src/components/input/FormInput.vue index 62e3134..806758e 100644 --- a/src/components/input/FormInput.vue +++ b/src/components/input/FormInput.vue @@ -14,7 +14,7 @@ :placeholder="title" :disabled="disabled" :min="min" - @focusout="$emit('focusout', modelValue)" + @focusout="$emit('focusout', modelValue)" />
{{ title }}을 확인해주세요. @@ -78,6 +78,7 @@ const props = defineProps({ min: { type: String, default: '', + required: false, } });