Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

homePage.vue 894B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div>
  3. <CarouselSection />
  4. <PropertySection
  5. data-aos="fade-up"
  6. data-aos-anchor-placement="top-bottom"
  7. data-aos-delay="150"
  8. />
  9. </div>
  10. </template>
  11. <script>
  12. import CarouselSection from "./carouselSection.vue";
  13. //import ServiceSection from "./serviceSection.vue";
  14. import PropertySection from "./propertySection.vue";
  15. //import NewsSection from "./newsSection.vue";
  16. //import TestimonialSection from "./testimonialSection.vue";
  17. import AOS from "aos";
  18. import "aos/dist/aos.css";
  19. export default {
  20. created() {
  21. AOS.init();
  22. },
  23. components: {
  24. CarouselSection,
  25. //ServiceSection,
  26. PropertySection
  27. //NewsSection,
  28. //TestimonialSection
  29. },
  30. head: {
  31. title: {
  32. inner: "Uni-Vate Properties"
  33. },
  34. meta: [
  35. { name: "google-site-verification", content: "wgxKi_f6JKZBurr242rfYmwmyjrcdkbWWBxrkcNvn90" }
  36. ]
  37. }
  38. };
  39. </script>