vue3 行点击事件 table 树 点击行展开
需求:每次需要点击左侧小按钮才可以展开不方便,提出点击行就展开
el-table 添加
ref="tableDeptRef"
@row-click="handleRowClick"
方法
const tableDeptRef = ref()
/**行点击事件 */
const handleRowClick=(row)=> {
tableDeptRef.value.toggleRowExpansion(row);
}
注意:可以打印tableDeptRef.value看看;我的table封装了公共组件,所以toggleRowExpansion方法在getTableRef方法里,即
tableDeptRef.value.getTableRef().toggleRowExpansion(row);