chat.vue 544 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="container">
  3. <u-search placeholder="请输入搜索内容" v-model="searchForm.keyword"></u-search>
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { onLoad } from '@dcloudio/uni-app'
  9. const searchForm = ref({
  10. keyword: ''
  11. })
  12. onLoad(() => {
  13. uni.setTabBarBadge({ //显示数字
  14. index: 1, //tabbar下标
  15. text: '999' //数字
  16. })
  17. })
  18. </script>
  19. <style lang="scss" scoped>
  20. .container {
  21. height: 100vh;
  22. width: 100vw;
  23. background-color: #f7f7f7;
  24. padding: 0 20px;
  25. }
  26. </style>