I want show my img of my blogs in Nuxt with Strapi but I can not do it I log my blogs you can see json data:
I use this code but it does not work !
<template>
<div class="blogcontainer">
<div
v-for="blog in allBlogs"
:key="blog.id"
:id="blog.id"
class="blog flex"
>
<img :src="`http://localhost:1337/${blog.img.url}`" />
</div>
</div>
</template>

imgis an array here, you should loop on it or use some index on it akablog.img[0].url.