img-size.vue
605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
<img v-lazy="currentSrc" :alt="alt" v-if="!refresh" />
</template>
<script>
export default {
name: "ImgSize",
props: {
src: String,
width: Number,
height: Number,
alt: String
},
data() {
return {
refresh: false
};
},
watch: {
src() {
this.refresh = true;
this.$nextTick(() => {
this.refresh = false;
});
}
},
computed: {
currentSrc() {
return (this.src || "")
.replace("http://", "//")
.replace("{width}", this.width)
.replace("{height}", this.height);
}
}
};
</script>