24 lines
333 B
Vue
24 lines
333 B
Vue
|
|
<template>
|
||
|
|
<view class="at_text_message_container bg_container">
|
||
|
|
消息
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "AtTextMessageRender",
|
||
|
|
components: {},
|
||
|
|
props: {
|
||
|
|
message: Object,
|
||
|
|
conversationID:String,
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {};
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped></style>
|