20 lines
278 B
Vue
20 lines
278 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> |