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

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


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

posted @ 2021-04-02 13:56  野狼谷  阅读(2541)  评论(0编辑  收藏  举报