ElementUI表格点击行选中复选框

  • Post author:
  • Post category:其他


<el-table
          :data="tableData"
          ref="tableDom"
          :height="'100%'"
          style="width: 100%;"
          border
          @selection-change="handleSelectionChange"
          @row-click="toggleSelection"
        >
 toggleSelection(row) {
      this.$refs.tableDom.toggleRowSelection(row);
    },



版权声明:本文为qq_41154522原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。