Use element ui's table table to set the height attribute of the table content. Can you set the variable without hard-coding? The height of different screens is different. For example, in the following code, height="250", how can the attribute value be implemented using a variable?
<el-table
:data="tableData3"
height="250"
border
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
prop="address"
label="地址">
</el-table-column>
</el-table>