Answers for "image in vue"

0

vue image src

<img v-bind:src="'/media/avatars/' + joke.avatar" />
Posted by: Guest on April-27-2021
1

add images in data object vuejs

<template>
  <div id="app">
    <img :src="image" />
  </div>
</template>

<script>
import image from "./assets/logo.png"


export default {
    data: function () {
        return {
            image: image
        }
    }
}
</script>
Posted by: Guest on July-21-2020
0

render image in vue

<template>
  <div>
    <img :src="image"/>
  </div>
</template>
<script>
export default {
  mounted: function() {
    if (this.source) { //is it empty
      this.image = this.source //replace placeholder
    }
   this.loading = false
  },
  data () {
    return {
      image: somePlaceholderImage,//url for placeholder image
      loading: true
    }
  },
  props: ['source'],
}
</script>

<style>

</style>
Posted by: Guest on July-05-2021

Browse Popular Code Answers by Language