删除
<template slot-scope="scope">
<span class="btn-danger" @click="deleteRow(scope.$index, tableData)">删除</span>
</template>
deleteRow(index, rows) {
rows.splice(index, 1)
},
追加
<el-button type="primary" @click="handleAdd">增加</el-button>
handleAdd() {
this.tableData.push({
name: '',
code: '',
description: ''
})
},
网友评论