keanu-weblite/src/components/messages/ContactJoin.vue
N-Pex c4230b8abc Dynamic message UI
Also, WIP: send and receive images.
2020-11-17 21:24:03 +01:00

18 lines
No EOL
323 B
Vue

<template>
<!-- Contact joined the chat -->
<div class="messageJoin">
{{ stateEventDisplayName(event) }} joined the chat
</div>
</template>
<script>
import messageMixin from "./messageMixin";
export default {
mixins: [messageMixin],
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>