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