mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
Add preview for pending messages and attachments Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
25 lines
349 B
Vue
25 lines
349 B
Vue
<template>
|
|
<div class="message-text__wrap">
|
|
<span v-html="message"></span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
message: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
readableTime: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
isEmail: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|