How does element ui2.X set table to grow as td content grows?

<el-table>
 <el-table-column
            header-align="center"
            align="right"
            label="">
          </el-table-column>
 <el-table-column
    v-for="(item, index) in arr"
    :key="index"
    min-width="50"
    :label="item.name">
  </el-table-column>
</el-table>

in addition to the first column, table traverses each column, and the content in td is different, long and short. Setting min-width has no effect. If set 50, then if the td content exceeds 50, it will not grow. What
wants to achieve is that if the content exceeds 50, then td will automatically widen. Is there any solution

Mar.29,2021

set up el-table-column min-width official website api is very clear element UI Table

Menu