Skip to content

Commit 1418422

Browse files
committed
fix: input focus style error, close #5188
1 parent 1d47959 commit 1418422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/input/Input.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ export default defineComponent({
336336
inputType: 'input',
337337
value: fixControlledValue(stateValue.value),
338338
handleReset,
339-
focused: focused.value && props.disabled,
339+
focused: focused.value && !props.disabled,
340340
};
341341

342342
return (

0 commit comments

Comments
 (0)