🔥 perf(textarea): remove unused debug output

This commit is contained in:
Timothy Yin 2024-11-26 17:29:59 +08:00
parent 11018ba713
commit 817611c731

View File

@ -114,8 +114,6 @@ export default defineComponent({
textarea.value.rows = props.maxrows ? Math.min(computedRows, props.maxrows) : computedRows
}
textarea.value.style.overflow = overflowBefore
console.log('computedRows', computedRows)
}
const updateValue = (value: string) => {