[Vuejs]-How to link image in components in vue?

1👍

You don’t need to put ./public/

<img :src="'symbol/' + HeaderImage"/>

0👍

  1. Create a new folder in src named with assets
  2. Put your image into assets folder
  3. Change <img src="./public/symbol/{{HeaderImage}}"/> to <img :src="'~/assets/' + HeaderImage"/> in your Header.vue file

Leave a comment