index.vue 586 B

123456789101112131415161718192021222324252627
  1. <!-- 游戏页面 -->
  2. <template>
  3. <view>这是游戏页面</view>
  4. <CustomTabBar :cardId="cardId" :nianji="nianji" :zhangId="zhangId"></CustomTabBar>
  5. </template>
  6. <script setup>
  7. import {
  8. reactive,
  9. ref,
  10. getCurrentInstance,
  11. onMounted
  12. } from "vue";
  13. import {
  14. onLoad
  15. } from '@dcloudio/uni-app';
  16. import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
  17. const zhangId = ref(null); //游客使用
  18. const nianji = ref(null); //游客使用
  19. const cardId = ref(null); //游客使用
  20. onLoad((options) => {
  21. })
  22. </script>
  23. <style>
  24. </style>