mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Field): textarea scroll to top after resizing (#9206)
This commit is contained in:
parent
eaccf2db0f
commit
e544b9ffe1
@ -1,5 +1,12 @@
|
||||
import { HTMLAttributes, InputHTMLAttributes } from 'vue';
|
||||
import { trigger, isObject, isPromise, isFunction } from '../utils';
|
||||
import {
|
||||
trigger,
|
||||
isObject,
|
||||
isPromise,
|
||||
isFunction,
|
||||
getRootScrollTop,
|
||||
setRootScrollTop,
|
||||
} from '../utils';
|
||||
import type { FieldRule, FieldType, FieldAutosizeConfig } from './types';
|
||||
|
||||
function isEmptyValue(value: unknown) {
|
||||
@ -59,6 +66,7 @@ export function resizeTextarea(
|
||||
input: HTMLInputElement,
|
||||
autosize: true | FieldAutosizeConfig
|
||||
) {
|
||||
const scrollTop = getRootScrollTop();
|
||||
input.style.height = 'auto';
|
||||
|
||||
let height = input.scrollHeight;
|
||||
@ -74,6 +82,8 @@ export function resizeTextarea(
|
||||
|
||||
if (height) {
|
||||
input.style.height = `${height}px`;
|
||||
// https://github.com/youzan/vant/issues/9178
|
||||
setRootScrollTop(scrollTop);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user