Added handleOnInput to textbox question

This commit is contained in:
Leah Schumann 2023-02-10 10:01:28 -05:00
parent d606bb6b72
commit ce243fc296

View file

@ -27,7 +27,7 @@
cornerStyle === 'rounded' ? 'rounded-pill' : '', cornerStyle === 'rounded' ? 'rounded-pill' : '',
]" ]"
:validationRules="validationRules" :validationRules="validationRules"
@input="handleChange" @input="handleOnInput === true ? 'handleChange' : ''"
@change="handleChange" @change="handleChange"
@blur="handleChange" @blur="handleChange"
:maxlength="maxLength ? maxLength : '999'" :maxlength="maxLength ? maxLength : '999'"
@ -70,6 +70,7 @@ export default {
type: String, type: String,
default: "", default: "",
}, },
handleOnInput: Boolean,
validationRules: String, validationRules: String,
cmsWidgetName: String, cmsWidgetName: String,
maxLength: String, maxLength: String,