Merge pull request #6630 from KumJungMin/fix/issue-4510
fix(TextArea): autoResize issue with v-show by implementing ResizeObserverpull/6775/head
commit
aa92d01043
|
@ -11,17 +11,27 @@ export default {
|
||||||
extends: BaseTextarea,
|
extends: BaseTextarea,
|
||||||
inheritAttrs: false,
|
inheritAttrs: false,
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.$el.offsetParent && this.autoResize) {
|
if (this.autoResize) {
|
||||||
|
this.observer = new ResizeObserver(() => {
|
||||||
this.resize();
|
this.resize();
|
||||||
|
});
|
||||||
|
this.observer.observe(this.$el);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updated() {
|
updated() {
|
||||||
if (this.$el.offsetParent && this.autoResize) {
|
if (this.autoResize) {
|
||||||
this.resize();
|
this.resize();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
beforeUnmount() {
|
||||||
|
if (this.observer) {
|
||||||
|
this.observer.disconnect();
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
resize() {
|
resize() {
|
||||||
|
if (!this.$el.offsetParent) return;
|
||||||
|
|
||||||
this.$el.style.height = 'auto';
|
this.$el.style.height = 'auto';
|
||||||
this.$el.style.height = this.$el.scrollHeight + 'px';
|
this.$el.style.height = this.$el.scrollHeight + 'px';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue