el-select下拉框错位问题记录

el-select下拉框有时会发生错位,根据网上的解决方法:

:popper-append-to-body="false"

 发现不起效果

原因:el-select外层还有一层el-table

最终解决办法:


      
 

 

::v-deep .popper-select {
  position: absolute !important;
  top: 35px !important;
  left: 0px !important;
}

你可能感兴趣的:(1024程序员节)