element-ui的el-table的内容无法自适应高度以及超出高度时内滚动展示的问题

4 阅读1分钟

目标

element-ui的el-table组件,在弹窗内展示,当窗口高度不确定时,期望它能内部滚动展示

  • 出现的问题
    • height,一旦设置,就固定了高度,当表格内容不是很多时,无法自适应内容高度
    • max-height,只能是px,当窗口高度较小时无法自动调整

解决方案

  • 依靠以下两个属性配置来实现目标
  • height="auto"
  • style="max-height: calc(100vh - 300px);"
      <el-table
        :data="tagDetailPopInfo.tagLimitList"
        border
        height="auto"
        style="max-height: calc(100vh - 300px);"
      >
      </el-table>