forminput min 속성추가가
This commit is contained in:
parent
99b7296f00
commit
7bb2f48dda
@ -12,6 +12,7 @@
|
||||
v-model="inputValue"
|
||||
:maxLength="maxlength"
|
||||
:placeholder="title"
|
||||
:min="min"
|
||||
/>
|
||||
<div class="invalid-feedback" :class="isAlert ? 'display-block' : ''">
|
||||
{{ title }}을 확인해주세요.
|
||||
@ -60,6 +61,10 @@ const props = defineProps({
|
||||
default: true,
|
||||
required: false,
|
||||
},
|
||||
min :{
|
||||
type:String,
|
||||
default:false,
|
||||
}
|
||||
});
|
||||
|
||||
// Emits 정의
|
||||
|
||||
Loading…
Reference in New Issue
Block a user