MatheusrdSantos / vue-quick-chat

A simple chat component created with Vue.js
MIT License
128 stars 45 forks source link

slot to customize the layout of the message content #52

Open mahbubahmed opened 3 years ago

mahbubahmed commented 3 years ago

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>