Explorar el Código

Select: fix initialInputHeight (#15989)

Select: fix initialInputHeight (#15989)
Inside hace 6 años
padre
commit
b4c2570387
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      packages/select/src/select.vue

+ 2 - 1
packages/select/src/select.vue

@@ -869,7 +869,8 @@
           small: 32,
           mini: 28
         };
-        this.initialInputHeight = reference.$el.getBoundingClientRect().height || sizeMap[this.selectSize];
+        const input = reference.$el.querySelector('input');
+        this.initialInputHeight = input.getBoundingClientRect().height || sizeMap[this.selectSize];
       }
       if (this.remote && this.multiple) {
         this.resetInputHeight();