2019-08-30 14:40:39 +00:00
|
|
|
export default {
|
2020-02-25 02:06:23 +00:00
|
|
|
name: "textareaAutoHeight",
|
2019-11-28 15:11:52 +00:00
|
|
|
update({ scrollHeight, clientHeight, style }) {
|
2019-11-27 01:24:32 +00:00
|
|
|
if (scrollHeight !== clientHeight) {
|
2020-02-24 18:44:50 +00:00
|
|
|
style.minHeight = `${scrollHeight}px`
|
2019-10-25 08:14:34 +00:00
|
|
|
}
|
2020-02-24 18:44:50 +00:00
|
|
|
},
|
|
|
|
|
}
|