代码人»首页 技术广场 Vue 查看内容

el-table列表点击操作中的编辑,vue弹框动态赋值

245

主题

2

回帖

888

积分

管理员

积分
888
1.<template>

  1. <el-table-column :width="150" align="center" label="操作" fixed="right">
  2.         <template #default="scope">
  3.           <el-button link type="primary" @click="openForm('update', scope.row.id, scope.row)">
  4.             编辑
  5.           </el-button>
  6.           <el-button link type="danger" @click="handleDelete(scope.row.id)"> 删除</el-button>
  7.         </template>
  8.       </el-table-column>
复制代码



相关:

.hasOwnProperty()是什么?

答:hasOwnProperty‌是JavaScript中的一个内置方法,用于检查一个对象是否具有指定名称的属性,并且这个属性必须是对象自身的属性,而不是从原型链继承的属性。如果对象拥有该属性,则返回true;否则返回false。

微信扫一扫,分享更方便

付费看帖
剩余 30% 内容需要支付 1.00 元 后可完整阅读
支持付费阅读,激励作者创作更好的作品。会员可8折购买!

举报 回复