room.vue 553 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="">
  3. <view>
  4. 房间1
  5. </view>
  6. <!-- <TabBar></TabBar> -->
  7. <u-tabbar :value="0" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true">
  8. <u-tabbar-item @click='changeRouter(item)' v-for="item in tabbarList " :key="item.icon" :text="item.text"
  9. :icon="item.icon">
  10. </u-tabbar-item>
  11. </u-tabbar>
  12. </view>
  13. </template>
  14. <script>
  15. import TabBar from "@/mixins/tabbar.js"
  16. export default {
  17. mixins: [TabBar],
  18. data() {
  19. return {
  20. };
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. </style>