模板網(wǎng)站可以自己買(mǎi)空間嗎嗎百度一下全知道
el-table那些事
- 獲取el-table所有勾選的行數(shù)據(jù)
用于記錄工作和日常學(xué)習(xí)遇到的坑,需求。
vue3+element-plus+ts
獲取el-table所有勾選的行數(shù)據(jù)
1、需要先聲明一個(gè)ref變量,并賦值給el-table
2、通過(guò)el-table提供的getSelectionRows()函數(shù)獲取選中的"行對(duì)象"數(shù)據(jù)集
const tableRef = ref();const selectedAry = tableRef.value.getSelectionRows();console.log(selectedAry);