12345678910111213141516171819202122232425262728 |
- <template>
- <div>
- <Banners></Banners>
- <Brands></Brands>
- <WrapOne></WrapOne>
- <WrapTwo></WrapTwo>
- <WrapThree></WrapThree>
- <WrapFour></WrapFour>
- <WrapFive></WrapFive>
- </div>
- </template>
- <script setup lang="ts">
- import Banners from './modules/Banners/index.vue'
- import Brands from './modules/Brands/index.vue'
- import WrapOne from './modules/WrapOne/index.vue'
- import WrapTwo from './modules/WrapTwo/index.vue'
- import WrapThree from './modules/WrapThree/index.vue'
- import WrapFour from './modules/WrapFour/index.vue'
- import WrapFive from './modules/WrapFive/index.vue'
- </script>
- <style lang="less" scoped>
- </style>
|