vue

el-table点击行选中

2020-07-14  本文已影响0人  丿Sorry丶
<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);
}
上一篇下一篇

猜你喜欢

热点阅读