123456789101112131415161718192021222324252627 |
- <!-- 游戏页面 -->
- <template>
- <view>这是游戏页面</view>
- <CustomTabBar :cardId="cardId" :nianji="nianji" :zhangId="zhangId"></CustomTabBar>
- </template>
- <script setup>
- import {
- reactive,
- ref,
- getCurrentInstance,
- onMounted
- } from "vue";
- import {
- onLoad
- } from '@dcloudio/uni-app';
- import CustomTabBar from '@/components/custom-tabbar/custom-tabbar.vue';
- const zhangId = ref(null); //游客使用
- const nianji = ref(null); //游客使用
- const cardId = ref(null); //游客使用
- onLoad((options) => {
- })
- </script>
- <style>
- </style>
|