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" />
Source:stackexchange.com