12345678910111213141516171819202122232425 |
- <template>
- <view class="container">
- 消息
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- onLoad(() => {
- uni.setTabBarBadge({ //显示数字
- index: 1, //tabbar下标
- text: '999' //数字
- })
- })
- </script>
- <style lang="scss" scoped>
- .containerx {
- height: 100vh;
- width: 100vw;
- background-color: #f7f7f7;
- }
- </style>
|