You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
346 B

2 months ago
  1. <template>
  2. <view class="content">
  3. 题库
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref, reactive } from 'vue';
  8. import { onLoad, onReady } from "@dcloudio/uni-app"
  9. import { getBannerList } from '@/config/api.js'
  10. async function getBannerListFn() {
  11. const { data: res } = await getBannerList()
  12. console.log(res)
  13. }
  14. getBannerListFn()
  15. </script>