elementui

table selection

设置选中状态

this.$nextTick(() => {
	this.page.records.forEach(row => {
		if (row.checkStatus == 1) {
			this.$refs.multipleTable.toggleRowSelection(row, true)
		}
	})
})
原文地址:https://www.cnblogs.com/zhuxiang1633/p/15543338.html