9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
export default {
|
|
name: "textareaAutoHeight",
|
|
update({scrollHeight, clientHeight, style}) {
|
|
if (scrollHeight !== clientHeight) {
|
|
style.minHeight = `${scrollHeight}px`;
|
|
}
|
|
}
|
|
}
|