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

homePage.vue 707B

12345678910111213141516171819202122232425262728293031
  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. };
  31. </script>