Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

propertyManagement.vue 745B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div>
  3. <CarouselSection />
  4. <main id="main">
  5. <ServicesSection data-aos="fade-down" data-aos-anchor-placement="top-bottom" />
  6. <TestimonialSection
  7. data-aos="fade-up"
  8. data-aos-anchor-placement="top-bottom"
  9. data-aos-delay="150"
  10. />
  11. </main>
  12. </div>
  13. </template>
  14. <script>
  15. /* eslint-disable */
  16. import CarouselSection from "./carouselSection";
  17. import ServicesSection from "./ourServicesSection";
  18. import TestimonialSection from "../testimonialSection";
  19. import AOS from "aos";
  20. import "aos/dist/aos.css";
  21. export default {
  22. created() {
  23. AOS.init();
  24. },
  25. components: {
  26. CarouselSection,
  27. ServicesSection,
  28. TestimonialSection
  29. }
  30. };
  31. </script>
  32. <style lang="scss" scoped></style>