fix(Field): set selection range only when focused (#11333)

This commit is contained in:
neverland 2022-11-30 21:36:57 +08:00 committed by chenjiahan
parent 882ca4db4e
commit 32b5d39f7b

View File

@ -305,7 +305,9 @@ export default defineComponent({
if (inputRef.value && inputRef.value.value !== value) {
const { selectionStart, selectionEnd } = inputRef.value;
inputRef.value.value = value;
inputRef.value.setSelectionRange(selectionStart, selectionEnd);
if (state.focused) {
inputRef.value.setSelectionRange(selectionStart, selectionEnd);
}
}
if (value !== props.modelValue) {