chat.vue 400 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="container">
  3. 消息
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { onLoad } from '@dcloudio/uni-app'
  9. onLoad(() => {
  10. uni.setTabBarBadge({ //显示数字
  11. index: 1, //tabbar下标
  12. text: '999' //数字
  13. })
  14. })
  15. </script>
  16. <style lang="scss" scoped>
  17. .containerx {
  18. height: 100vh;
  19. width: 100vw;
  20. background-color: #f7f7f7;
  21. }
  22. </style>