ElementPlus的select组件多选无限抖动的解决方法

如何出现问题

  1. el-select+multiple+filterable
  2. tag宽度+input宽度正好到达临界值
  3. select的高度就会无限高低切换
    在这里插入图片描述
    在这里插入图片描述

解决办法

Fix select height width filterable and multiple issus的问题解决办法:input的最小宽度要>4px

.el-select {
  .select-trigger{
    .el-select__input{
      min-width:5px
    }
  }
}

你可能感兴趣的:(javascript,前端,vue.js)