其他分享
首页 > 其他分享> > element-ui

element-ui

作者:互联网

table selection

设置选中状态

this.$nextTick(() => {
            this.page.records.forEach(row => {
              if (row.checkStatus == 1) {
                this.$refs.multipleTable.toggleRowSelection(row, true)
              }
            })
          })

标签:nextTick,selection,refs,element,ui,multipleTable,row
来源: https://www.cnblogs.com/zhuxiang1633/p/15543338.html