mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Field): keep selection position after updating value (#11308)
This commit is contained in:
parent
41cf5706fd
commit
521748a5f8
@ -303,7 +303,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 (value !== props.modelValue) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user