It is invalid for textarea of element to set automatic height in table of element.

problem description

textarea of element is invalid to set automatic height in table of element

the environmental background of the problems and what methods you have tried

related codes

/ / Please paste the code text below (do not replace the code with pictures)
< el-table: data= "tableData" stripe style= "width: 100%" >

  <el-table-column prop="date" label="" width="180">
  </el-table-column>
  <el-table-column prop="name" label="" width="180">
  </el-table-column>
  <el-table-column label="">
    <template slot-scope="scope">
      <el-input type="textarea" autosize v-model="scope.row.address" placeholder="" style="line-height: normal"></el-input>
    </template>
  </el-table-column>
</el-table>

what result do you expect? What is the error message actually seen?

textarea automatically heights based on content

Mar.29,2021
Menu