重构聊天页面

This commit is contained in:
唐明明
2022-01-27 17:58:33 +08:00
parent 2561119a17
commit 2ac0add20d
7 changed files with 178 additions and 26 deletions

20
components/im/imAUDIO.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<view>
语音消息
</view>
</template>
<script>
export default {
name:"im",
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

20
components/im/imIMG.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<view>
图片消息
</view>
</template>
<script>
export default {
name:"im",
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

20
components/im/imTXT.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<view>
文字消息
</view>
</template>
<script>
export default {
name:"im",
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>