vue element UI el-table表格添加行点击事件

<el-table @row-click="openDetails">
</el-table>


//对应的 methods 中
//点击行事件
methods: {
openDetails (row) {
//具体操作
},
}

原文地址:https://www.cnblogs.com/yelanggu/p/14610368.html