-
当el-table元素中注入
data
对象数组后, -
在el-table-column中用
prop
属性来对应对象中的键名即可填入数据, -
用
label
属性来定义表格的列名。可以使用width属性来定义列宽。 -
纵向内容过多时,可选择固定表头:只要在el-table元素中定义了height属性,即可实现固定表头的表格,而不需要额外的代码。
<template slot-scope="scope">
<div>
<el-table
ref="multipleTable"
class="project_list"
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
width