mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Field): set selection range only when focused (#11333)
This commit is contained in:
parent
882ca4db4e
commit
32b5d39f7b
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user