// 初始設置選中
toggleSelection(rows) {
if (rows) {
rows.forEach(row => {
this.$refs.table.toggleRowSelection(row);
});
}
}
rows傳入選中項的集合