<image :src="src" lazy-load :style="imageStyle"></image>
<image :src="src" lazy-load :style="imageStyle" @load="loadImage"></image>
imageStyle:
computed: {
imageStyle() {
return `width:${this.w}px;height:${this.h}px;`
}
}
loadImage:
loadImage(e){
this.w = 200;
this.h = 150;
}
0 个回复