image-format.vue 843 Bytes
<template>
  <img v-lazy="currentSrc" :alt="alt" v-if="currentLazy">
  <img :src="currentSrc" :alt="alt" v-else lazy="" data-src="">
</template>

<script>
export default {
  name: 'ImageFormat',
  props: {
    lazy: {
      type: Boolean,
      default: true
    },
    src: String,
    width: [Number, String],
    height: [Number, String],
    mode: {
      type: [Number, String],
      default: 2
    },
    alt: String,
  },
  data() {
    return {
      refresh: false,
      currentLazy: this.lazy
    };
  },
  watch: {
    src() {
      this.currentLazy = false;
    },
    lazy(val) {
      this.currentLazy = val;
    }
  },
  computed: {
    currentSrc() {
      return (this.src || '')
        .replace('{mode}', this.mode)
        .replace('{width}', this.width)
        .replace('{height}', this.height);
    }
  }
};
</script>