美文网首页
vue-cropper图片裁切的运行

vue-cropper图片裁切的运行

作者: 最念倾城 | 来源:发表于2021-01-15 16:13 被阅读0次
<el-dialog
      title="修改照片"
      :visible.sync="dialogVisible"
      width="30%"
      append-to-body
      @opened="onDialogOpened"
      @closed='onDialogClosed'
    >
      <div class="preview-image-wrap">
        <img
          class="preview-image"
          :src="perviewImage"
          ref="preview-image"
          alt=""
        />
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="onUpdatePhoto"
          >确 定</el-button
        >
      </span>
    </el-dialog>

https://github.com/fengyuanchen/cropper
项目地址

相关文章

网友评论

      本文标题:vue-cropper图片裁切的运行

      本文链接:https://www.haomeiwen.com/subject/gzjwaktx.html