根据官网这两个属性:
就可以实现点击行的时候自动勾选
? ?<el-table ref="multipleTable" height="260px" highlight-current-row v-loading="loading" :data="userList"?? @select-all="selectAll" @selection-change="handleSelectionChange" @row-click="clickRow">
事件 :
? clickRow(row) {
? ? ? ? ? ? this.$refs.multipleTable.toggleRowSelection(row);
? ? ? ? },