使用一个,在里面就可以用scope.row.xxxxx访问自己的东西了
1 2 3 4 5 6 7 8 9 10 11
| <el-table :data="tableData" style="width: 100%" :row-class-name="tableRowClassName"> <el-table-column label="配置信息"> <template slot-scope="scope"> <el-button type="text" @click="open(scope.row.config_str)">显示配置信息JSON</el-button> </template> </el-table-column> </el-table>
|