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' : '',
]"
:validationRules="validationRules"
@input="handleChange"
@input="handleOnInput === true ? 'handleChange' : ''"
@change="handleChange"
@blur="handleChange"
:maxlength="maxLength ? maxLength : '999'"
@ -70,6 +70,7 @@ export default {
type: String,
default: "",
},
handleOnInput: Boolean,
validationRules: String,
cmsWidgetName: String,
maxLength: String,