VUE 3 eltable 表格 单击传递参数到方法正常使用 麦克斯

    <el-table-column label="操作" width="100">
      <template v-slot="scope"> //把父标签的内容传递到方法内
        <el-button size="small" @click="edit(scope.row)">修改</el-button>
      </template>
    </el-table-column>

  

原文地址:https://www.cnblogs.com/max-hou/p/15757691.html