美文网首页vue
el-table点击行选中

el-table点击行选中

作者: 丿Sorry丶 | 来源:发表于2020-07-14 14:24 被阅读0次
<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);
}

相关文章

网友评论

    本文标题:el-table点击行选中

    本文链接:https://www.haomeiwen.com/subject/elzxhktx.html