美文网首页WEB前端笔记本
elemetnui删除一条表格数据和追加一条数据

elemetnui删除一条表格数据和追加一条数据

作者: 蜗牛和曼巴 | 来源:发表于2019-10-14 11:27 被阅读0次

删除

     <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: ''
      })
    },

相关文章

网友评论

    本文标题:elemetnui删除一条表格数据和追加一条数据

    本文链接:https://www.haomeiwen.com/subject/vftrmctx.html