welfare.vue 424 B

12345678910111213141516171819202122
  1. <template>
  2. <layout-page>
  3. <view class="box">
  4. <SwiperAd :list="swiperAdList"></SwiperAd>
  5. <view class=""></view>
  6. </view>
  7. </layout-page>
  8. </template>
  9. <script setup>
  10. import { ref } from 'vue'
  11. import layoutPage from '@/layout'
  12. import SwiperAd from '@/components/SwiperAd'
  13. import { swiperAdListTest } from '@/utils/testData'
  14. const swiperAdList = ref(swiperAdListTest)
  15. </script>
  16. <style scoped lang="scss">
  17. </style>