I want show image using url from the db.
Like this
<img class="card-img" src="{{travel.city}}" alt="Card image">
{{travel.city}} is a variable from v-for loop. this v-foor loop is working.
Try using the syntax for attribute binding instead:
<img class="card-img" :src="travel.city" alt="Card image">
Vue doesn't support interpolation of mustache-style templates in attributes (like Angular or other frameworks do).
imgelement rendering?