image-format.vue
573 Bytes
<template>
<img v-lazy="currentSrc" :alt="alt" v-if="!refresh">
</template>
<script>
export default {
name: 'ImageFormat',
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('{width}', this.width)
.replace('{height}', this.height);
}
}
};
</script>