以下记录都是踩过的坑,应该能达到药到病除的效果
1、element el-table 列表列项变化,解决表格抖动现象
原因:表格重新初始化引起
解决方法
<el-table :key="Math.random()">
</el-table>
2、父元素max-height,子元素想继承然后内部滚动样式怎么办
解决方法:
<div class="father">
<div class="son"></div>
</div>
<style>
.father{
display: flex;
flex-direction: column;
justify-content: space-between;
max-height: calc(100% - 160px);
.son{
overflow-y: auto;
}
}
</style>