天天看点

Vue 中监控 img 加载完毕事件

使用场景:

一张图片宽固定,高自适应,但是又需要用到图片的高度

原理:

img的load事件

methods: {
    getImgH() {
      // 图片加载完的时候重新获取height
      console.log('img height = ', this.$refs.targetImg.clientHeight)
    },
  },
           

如果对您有帮助记得帮我点赞呦!