chore: Add an indicator for incoming emails (#1112)

This commit is contained in:
Pranav Raj S 2020-08-01 20:56:47 +05:30 committed by GitHub
parent 6d4cfcceba
commit 5e5f34bedc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 207 additions and 219 deletions

View file

@ -1,12 +1,24 @@
<template>
<span class="message-text__wrap">
<span v-html="message"></span>
<span class="time">{{ readableTime }}</span>
</span>
</template>
<script>
export default {
props: ['message', 'readableTime'],
props: {
message: {
type: String,
default: '',
},
readableTime: {
type: String,
default: '',
},
isEmail: {
type: Boolean,
default: true,
},
},
};
</script>