how can I show image of my blogs (in collection type) in Nuxt with Strapi cms?

270 Views Asked by At

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:

enter image description here

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>
1

There are 1 best solutions below

4
kissu On

img is an array here, you should loop on it or use some index on it aka blog.img[0].url.