浏览代码

Autocomplete: fix suggestion error when textarea (#18478)

Roojay 5 年之前
父节点
当前提交
624c1e90ff
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/autocomplete/src/autocomplete-suggestions.vue

+ 1 - 1
packages/autocomplete/src/autocomplete-suggestions.vue

@@ -60,7 +60,7 @@
 
     mounted() {
       this.$parent.popperElm = this.popperElm = this.$el;
-      this.referenceElm = this.$parent.$refs.input.$refs.input;
+      this.referenceElm = this.$parent.$refs.input.$refs.input || this.$parent.$refs.input.$refs.textarea;
       this.referenceList = this.$el.querySelector('.el-autocomplete-suggestion__list');
       this.referenceList.setAttribute('role', 'listbox');
       this.referenceList.setAttribute('id', this.id);