You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

carouselSection.vue 968B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <section id="intro">
  3. <div class="container">
  4. <div class="row">
  5. <div align="left" class="col-sm-12 col-md-8">
  6. <div class="intro-content box">
  7. <h2>More Info</h2>
  8. </div>
  9. </div>
  10. </div>
  11. </div>
  12. <carousel
  13. :nav="false"
  14. :dots="false"
  15. :items="1"
  16. :autoplay="true"
  17. :loop="true"
  18. id="intro-carousel"
  19. style="margin-top:-50px"
  20. :responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
  21. >
  22. <img class="item" v-for="(image, i) in images" :key="i" :src="image.image" />
  23. </carousel>
  24. <div id="intro-carousel" class="owl-carousel"></div>
  25. </section>
  26. </template>
  27. <script>
  28. /* eslint-disable */
  29. import carousel from "vue-owl-carousel";
  30. export default {
  31. components: {
  32. carousel,
  33. },
  34. props: {
  35. images: {},
  36. },
  37. created() {
  38. this.$emit("Loaded", true);
  39. },
  40. };
  41. </script>
  42. <style lang="scss" scoped></style>