vue對table的某一行的資料進行編輯,刪除操作

小學生也要加班發表於2020-09-30

效果圖在這裡插入圖片描述
在html中需要對button按鈕進行template包裹,scope.row就是這一行的資料

<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="primary" @click="editProgram(scope.row)">編輯</el-button>
<el-button type="danger"  @click="del(scope.row)">刪除</el-button>
</template>
</el-table-column>

相關文章