Chatwoot/app/javascript/dashboard/components/widgets/conversation/bubble/Text.vue
Nithin David Thomas a951fb20cb
Chore: UI fixes and enhancements (#796)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
2020-05-02 09:47:36 +05:30

12 lines
231 B
Vue

<template>
<span class="message-text__wrap">
<span v-html="message"></span>
<span class="time">{{ readableTime }}</span>
</span>
</template>
<script>
export default {
props: ['message', 'readableTime'],
};
</script>