Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <draggable
  2. v-model="product.images"
  3. v-bind="dragOptions"
  4. @start="drag = true"
  5. @end="drag = false">
  6. <transition-group
  7. class="row small-gutter"
  8. type="transition"
  9. :name="!drag ? 'flip-list' : null">
  10. <div class="col" v-for="(image, index) in product.images" :key="index + 0">
  11. <div class="pc-image draggable" :class="{ 'is-loading': image === '' }">
  12. <div class="img" :style="{ backgroundImage: `url('${image}')` }"></div>
  13. <i class="material-icons" v-tooltip="'Remove'" @click="removeProductImages(index)">close</i>
  14. </div>
  15. </div>
  16. </transition-group>
  17. </draggable>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement