<el-table
class="left-table"
border
ref="multipleTable"
height="300px"
:data="tableData"
@row-click="handleRowClick"
@select="handleSelect"
@select-all="handleSelectAll"
>
<el-table-column type="selection" width="50" align="center"></el-table-column>
<el-table-column prop="name" label="标签编号" show-overflow-tooltip></el-table-column>
<el-table-column prop="address" label="标签名称" show-overflow-tooltip></el-table-column>
</el-table>
handleRowClick(row, column, event) {
this.$refs.multipleTable.toggleRowSelection(row);
}