keanu-weblite/src/components/messages/ContactInvited.vue

18 lines
372 B
Vue
Raw Normal View History

<template>
<!-- Contact invited to the chat -->
<div class="messageJoin">
2021-03-10 13:40:32 +01:00
{{ event.getContent().displayname || stateEventDisplayName(event) }} was invited to the chat...
</div>
</template>
<script>
import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>