Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

homePage.vue 720B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div>
  3. <CarouselSection />
  4. <ServiceSection />
  5. <PropertySection />
  6. <AgentSection />
  7. <NewsSection />
  8. <TestimonialSection />
  9. <a href="#" class="back-to-top">
  10. <i class="fa fa-chevron-up"></i>
  11. </a>
  12. <div id="preloader"></div>
  13. </div>
  14. </template>
  15. <script>
  16. import CarouselSection from './carouselSection.vue';
  17. import ServiceSection from './serviceSection.vue';
  18. import PropertySection from './propertySection.vue';
  19. import NewsSection from './newsSection.vue';
  20. import TestimonialSection from './testimonialSection.vue';
  21. export default {
  22. components: {
  23. CarouselSection,
  24. ServiceSection,
  25. PropertySection,
  26. NewsSection,
  27. TestimonialSection,
  28. },
  29. };
  30. </script>