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

18 lines
338 B
Vue
Raw Normal View History

<template>
<!-- Contact invited to the chat -->
<div class="messageJoin">
{{ 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>