| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div>
- <CarouselSection />
- <ServiceSection />
- <PropertySection />
- <AgentSection />
- <NewsSection />
- <TestimonialSection />
- <a href="#" class="back-to-top">
- <i class="fa fa-chevron-up"></i>
- </a>
- <div id="preloader"></div>
- </div>
- </template>
- <script>
- import CarouselSection from './carouselSection.vue';
- import ServiceSection from './serviceSection.vue';
- import PropertySection from './propertySection.vue';
- import NewsSection from './newsSection.vue';
- import TestimonialSection from './testimonialSection.vue';
-
- export default {
- components: {
- CarouselSection,
- ServiceSection,
- PropertySection,
- NewsSection,
- TestimonialSection,
- },
- };
- </script>
|