父组件

  	<my-table
      ref="tableList"
      :get-data="dataItemList"
      :columns="dataItemColumns"
    ></my-table>

子组件

<el-table
      ref="table"
      v-loading="listLoading"
    ></el-table>

父组件引用子组件的ref


父组件想要使用toggleRowSelection()
就需要先拿到子组件的ref

this.selecList.forEach(r => {
	this.$refs.tableList.$refs.table.toggleRowSelection(r) 
})

Logo

前往低代码交流专区

更多推荐