index.vue 647 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div>
  3. <Banners></Banners>
  4. <Brands></Brands>
  5. <WrapOne></WrapOne>
  6. <WrapTwo></WrapTwo>
  7. <WrapThree></WrapThree>
  8. <WrapFour></WrapFour>
  9. <WrapFive></WrapFive>
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import Banners from './modules/Banners/index.vue'
  14. import Brands from './modules/Brands/index.vue'
  15. import WrapOne from './modules/WrapOne/index.vue'
  16. import WrapTwo from './modules/WrapTwo/index.vue'
  17. import WrapThree from './modules/WrapThree/index.vue'
  18. import WrapFour from './modules/WrapFour/index.vue'
  19. import WrapFive from './modules/WrapFive/index.vue'
  20. </script>
  21. <style lang="less" scoped>
  22. </style>