Files
uniapp-im-shop/pages/news-list/news-list.vue
2025-12-30 23:28:59 +08:00

31 lines
675 B
Vue

<script setup>
import { onLoad } from '@dcloudio/uni-app'
import { useAuthUser } from '@/composables/useAuthUser'
import { TUIConversation } from '@/TUIKit'
const { tencentUserSig } = useAuthUser()
onLoad(() => {
console.log(tencentUserSig.value, '===222===')
})
</script>
<template>
<view class="news-list">
<!-- <nav-bar isTopBg isPlaceholder :showBack="false" title="消息(99+)">
<template #right>右侧按钮</template>
</nav-bar>
<cb-search placeholder="搜索"></cb-search> -->
<TUIConversation></TUIConversation>
</view>
<!-- -->
</template>
<style lang="scss" scoped>
.news-list {
height: 100vh;
}
</style>