We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c52c0 commit 14c88dfCopy full SHA for 14c88df
packages/vuetify/src/components/VTextField/VTextField.tsx
@@ -105,7 +105,7 @@ export const VTextField = genericComponent<VTextFieldSlots>()({
105
106
nextTick(() => {
107
if (inputRef.value !== document.activeElement) {
108
- nextTick(() => inputRef.value?.focus())
+ inputRef.value?.focus()
109
}
110
})
111
@@ -221,7 +221,7 @@ export const VTextField = genericComponent<VTextFieldSlots>()({
221
placeholder={ props.placeholder }
222
size={ 1 }
223
type={ props.type }
224
- onFocus={ onFocus }
+ onFocus={ focus }
225
onBlur={ blur }
226
{ ...slotProps }
227
{ ...inputAttrs }
0 commit comments