vue-quick-chat
vue-quick-chat copied to clipboard
slot to customize the layout of the message content
Is there any way to customize the layout of the message content, perhaps using a slot like the header's?
<template v-slot:header>
<div>
<p v-for="(participant, index) in participants" :key="index" class="custom-title">{{participant.name}}</p>
</div>
</template>