VUE 3 el-table 表格 单击传递参数到方法--正常使用
<el-table-column label="操作" width="100">
<template v-slot="scope"> //把父标签的内容传递到方法内
<el-button size="small" @click="edit(scope.row)">修改</el-button>
</template>
</el-table-column>
<el-table-column label="操作" width="100">
<template v-slot="scope"> //把父标签的内容传递到方法内
<el-button size="small" @click="edit(scope.row)">修改</el-button>
</template>
</el-table-column>