fix(Field): adjust textarea size when focus/blur (#9719)

This commit is contained in:
neverland 2021-10-24 17:50:18 +08:00 committed by GitHub
parent 789e352726
commit 74a136f90e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -297,9 +297,17 @@ export default defineComponent({
const blur = () => inputRef.value?.blur();
const focus = () => inputRef.value?.focus();
const adjustTextareaSize = () => {
const input = inputRef.value;
if (props.type === 'textarea' && props.autosize && input) {
resizeTextarea(input, props.autosize);
}
};
const onFocus = (event: Event) => {
state.focused = true;
emit('focus', event);
nextTick(adjustTextareaSize);
// readonly not work in legacy mobile safari
const readonly = getProp('readonly');
@ -313,6 +321,7 @@ export default defineComponent({
updateValue(getModelValue(), 'onBlur');
emit('blur', event);
validateWithTrigger('onBlur');
nextTick(adjustTextareaSize);
resetScroll();
};
@ -364,13 +373,6 @@ export default defineComponent({
emit('keypress', event);
};
const adjustTextareaSize = () => {
const input = inputRef.value;
if (props.type === 'textarea' && props.autosize && input) {
resizeTextarea(input, props.autosize);
}
};
const renderInput = () => {
const controlClass = bem('control', [
getProp('inputAlign'),