vue mint-ui中swipe高度自适应

动态设置图片高度 

动态获取图片高度

data(){
  return{
    imgSize:0
  }
},
mounted() {
  this.imgSize = this.$refs['img'].offsetHeight;
  console.log(this.imgSize);
},

 

你可能感兴趣的:(mintUI)