No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. dlucasbra
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Best 0
    • Groups 0

    dlucasbra

    @dlucasbra

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    dlucasbra Follow

    Latest posts made by dlucasbra

    • Carousel with v-for

      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?

      posted in Help
      D
      dlucasbra