背景:spa
這裏是經過點擊「修改」按鈕後纔拿到當前行的數據,不是點擊當前行任意位置拿到數據,因此不能用 @row-click 方法code
改用點擊的時候直接拿到這個表裏面的這一條數據blog
1.綁定事件事件
<template slot-scope="scope"> <el-button size="mini" type="warning" @click="RightTbaleBtnClick(RightTypeData[scope.$index])">修改</el-button> </template>
2.拿到數據it
RightTbaleBtnClick(item){ console.log("修改事件") console.log(item) },