(vue)el-table表格删除操作加气泡确认框 效果: 代码: <el-table-column fixed="right" label="操作" width="120"> <template slot-scope="scope"> <el-popconfirm title="确定移除吗?" @confirm="deleteRow(scope.row.name)"> <el-button slot="reference" type="text">移除</el-button> </el-popconfirm> </template> </el-table-column>