mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
25 lines
368 B
Vue
25 lines
368 B
Vue
<template>
|
|
<div class="message-text__wrap">
|
|
<div class="text-content" v-html="message"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
message: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
readableTime: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
isEmail: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|