美文网首页
vue中使用html2canvas方法

vue中使用html2canvas方法

作者: 学王 | 来源:发表于2020-04-26 17:35 被阅读0次

    1:介绍
    html2canvas可以截取页面元素,生成图片
    2:安装

    npm install --save html2canvas
    

    3:使用

    toImage() {
            html2canvas(this.$refs.imageWrapper).then(canvas => {
              let dataURL = canvas.toDataURL("image/png");
              this.imgUrl = dataURL;
            });
          }
    

    相关文章

      网友评论

          本文标题:vue中使用html2canvas方法

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