el-table 全选

 el-table 全选



      this.$refs.table1.clearSelection()
      this.$refs.table1.toggleAllSelection()

反选

 
    console.log(this.$refs.table1.selection)
      this.$refs.table1.tableData.forEach(item=>{

        this.$refs.table1.toggleRowSelection(item,!(this.$refs.table1.selection.includes(item)))
      })
      

你可能感兴趣的:(vue.js,elementui,前端)