game.vue 477 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="center">
  3. <view class="kong">
  4. <u-empty mode="data" text="敬请期待"></u-empty>
  5. </view>
  6. <!-- <u-tabbar activeColor="#EE0979" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar> -->
  7. </view>
  8. </template>
  9. <script>
  10. import { tabbar } from '@/utils/tabbar.js';
  11. export default {
  12. data() {
  13. return {
  14. tabbar: tabbar,
  15. current: 2
  16. };
  17. }
  18. };
  19. </script>
  20. <style lang="less">
  21. .kong {
  22. height: 100vh;
  23. width: 750rpx;
  24. }
  25. </style>