Hello friends,
I trying to use QCarousel to show some images from my Laravel backend, however I having problems to use v-for directive with q-carousel-slide, for example:
<q-carousel-slide
:name="1"
:img-src="images[0].path"
/>
^ This work’s fine!
<q-carousel-slide
v-for="image in images"
:key="image.id"
:name="image.name"
:img-src="images.path"
/>
^ This not works, no console errors and no GET requests to server.
I found another similar topic about this, but basically the solution was use v-for like above. am I doing something wrong?