问题出现 原因
//基本还原了 使用场景 原因就是flex:1导致的el-table 不断的渲染宽度
<div style="display:flex;">
<div style="width:200px"></div>
<div style="flex:1">
<el-table></el-table>
</div>
<div>
解决方案: 使用flex:1的时候 配合overflow:hidden;就不会出现这种清空 神奇的css 没有原因只有答案 知道原因的补充一下