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