Advertisement
majweb

Untitled

Jul 16th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <div v-for="allpictures in allphotos" class="single">
  2. <p class="bg-blue text-default text-center">{{allpictures.type}}</p>
  3. <img v-if="allpictures.gallery == ''" :src="'/storage/admin/cwiczenia/user.png'" alt="" class="img-responsive"></li>
  4. <ul v-for="picture in allpictures.gallery">
  5. <slick ref="slick" :options="slickOptions">
  6. <li><img v-if="picture" :src="'/storage/admin/cwiczenia/'+picture.photo" alt="" class="img-responsive" ></li>
  7. </slick>
  8. </ul>
  9. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement