[Vuejs]-How can i render image from assets folder in vue?

0👍

You need to reference the root of you project folder with the @ symbol like this:

<img src="@/assets/images/home.png"/>

If your source is defined in a property, you need to use Vues v-bind:src:

<img v-bind:src="source" />

Leave a comment