12345678910111213141516171819202122 |
- <template>
- <layout-page>
- <view class="box">
- <SwiperAd :list="swiperAdList"></SwiperAd>
- <view class=""></view>
- </view>
- </layout-page>
- </template>
- <script setup>
- import { ref } from 'vue'
- import layoutPage from '@/layout'
- import SwiperAd from '@/components/SwiperAd'
- import { swiperAdListTest } from '@/utils/testData'
- const swiperAdList = ref(swiperAdListTest)
- </script>
- <style scoped lang="scss">
- </style>
|