(vue)el-table表格删除操作加气泡确认框

(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>

猜你喜欢

转载自blog.csdn.net/qq_44754635/article/details/131599745