0
点赞
收藏
分享

微信扫一扫

前端那些事20240115-前端那些事-数据删除操作


handleDel (row, index) {
      this.$confirm('是否确认删除该信息', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        this.tableData.splice(index,1)
      })
    },

举报

相关推荐

0 条评论