vue elementTable

it2023-06-08  76

<无后台数据 模拟编辑>

表格中直接点击编辑

template中 script中

export default { methods: { handleAmend() { console.log("修改"); } } }

全选 \ 反选

// 全选 handleSelectionChange(val) { this.$emit("haveChosen", val, this.totalNumber); }, // 反选 toggleSelection() { // tableDala 是你自己的数据名 this.tableData.forEach((item) => { this.$refs.multipleTable.toggleRowSelection(item); }); },
最新回复(0)