您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

carouselSecitonNew.vue 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>Let us manage your property</h2>
  8. <p>
  9. At Uni-Vate we appreciate the significant and positive relationship between effective
  10. Property Management and property prices. We understand that effective management not
  11. only relies on administrative processes being intact, but also on a clear plan and
  12. good communication with our clients based on respect, trust understanding, openness
  13. and accountability. We have access to a comprehensive set of human and other resources
  14. to ensure that your property is proactively managed to protect your investment and to
  15. ensure the contentedness of occupants. We offer comprehensive property management
  16. services, whether it being Sectional Title Management, HOA Management or Rental
  17. Property Portfolio Management.
  18. </p>
  19. <a href="#" class="btn-solid-blue">LIST YOUR PROPERTY WITH UNI-VATE PROPERTIES</a>
  20. <router-link v-if="!isLoggedIn" to="/user/login" class="btn-white-border"
  21. >LOGIN TO OWNERS PORTAL</router-link
  22. >
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. <carousel
  28. :nav="false"
  29. :dots="false"
  30. :items="1"
  31. :autoplay="true"
  32. :loop="true"
  33. :autoHeight="true"
  34. id="intro-carousel"
  35. style="margin-top:-50px;"
  36. :responsive="{ 0: { items: 1, nav: false }, 600: { items: 1, nav: false } }"
  37. >
  38. <img class="item" src="/img/intro-carousel/home-1.jpg" alt="" />
  39. <img class="item" src="/img/intro-carousel/16.jpg" alt="" />
  40. <img class="item" src="/img/intro-carousel/comm-1.jpg" alt="" />
  41. <img class="item" src="/img/intro-carousel/comm-4.jpg" alt="" />
  42. <img class="item" src="/img/intro-carousel/3.jpg" alt="" />
  43. <img class="item" src="/img/intro-carousel/home-5.jpg" alt="" />
  44. </carousel>
  45. <div id="intro-carousel" class="owl-carousel"></div>
  46. </section>
  47. </template>
  48. <script>
  49. /* eslint-disable */
  50. import carousel from "vue-owl-carousel";
  51. export default {
  52. components: {
  53. carousel
  54. }
  55. };
  56. </script>
  57. <style lang="scss" scoped></style>