<script>
export default {
data () {
return {
imgUrl: 'http://img.png'
}
}
methods: {
getImgInfo () {
let self =this;
let img =new Image()
img.src=self .imgUrl
img.onload=function () {
console.log('图片原始高度', img.height)
console.log('图片原始宽度',img.width)
}
}
}
}
</script>