(vue) el-table table delete operation plus bubble confirmation box

(vue) el-table table delete operation plus bubble confirmation box


Effect:
insert image description here

code:

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

Guess you like

Origin blog.csdn.net/qq_44754635/article/details/131599745