Files
YGChatCS/pages/index/index.vue
2025-08-10 19:40:47 +08:00

17 lines
273 B
Vue

<template>
<view class="container">
<ChatMainList />
</view>
</template>
<script setup>
import ChatMainList from "../chat/ChatMainList.vue";
</script>
<style lang="scss" scoped>
.container {
width: 100vw;
height: 100vh;
background-color: #ffffff;
}
</style>