美文网首页
图片预览

图片预览

作者: dnasn | 来源:发表于2019-04-17 23:09 被阅读0次
      ``  <input type="file" @change="getFile($event)" style="display: none;" id="coverFile" />
    </div>

``
•methods处
//点击图片预览区,即模拟点击文件选择组件
handleClick: function() {
document.getElementById('coverFile').click();
},
//图片预览
getFile: function() {
this.file = event.target.files[0];
var windowURL = window.URL || window.webkitURL;
this.course.cover = windowURL.createObjectURL(this.file);
this.show = false;
}

相关文章

网友评论

      本文标题:图片预览

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