在avue-crud,标签内自己写一个操作栏的按钮,通过 handleEdit()
  <template slot-scope="scope" slot="menu">
        <el-button
          type="text"
          icon="el-icon-edit-outline"
          size="small"
          @click.stop="handleEdit(scope.row, scope.index)"
          >签到
      </template>  



在methods定义方法
   handleEdit(row, index) {
       this.$refs.crud.rowEdit(row, index);
    },

Logo

前往低代码交流专区

更多推荐