You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const value = (event.targetasHTMLInputElement).value
138
140
139
-
if (modelModifiers.lazy) {
141
+
if (props.modelModifiers?.lazy) {
140
142
updateInput(value)
141
143
}
142
144
143
145
// Update trimmed input so that it has same behavior as native input https://github.com/vuejs/core/blob/5ea8a8a4fab4e19a71e123e4d27d051f5e927172/packages/runtime-dom/src/directives/vModel.ts#L63
const value = (event.targetasHTMLInputElement).value
138
141
139
-
if (modelModifiers.lazy) {
142
+
if (props.modelModifiers?.lazy) {
140
143
updateInput(value)
141
144
}
142
145
143
146
// Update trimmed textarea so that it has same behavior as native textarea https://github.com/vuejs/core/blob/5ea8a8a4fab4e19a71e123e4d27d051f5e927172/packages/runtime-dom/src/directives/vModel.ts#L63
0 commit comments