1.1.2 • Published 5 years ago

vue-bubble-chat v1.1.2

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

vue-bubble-chat

Amesome & simple vue chat component

preview

Installation

npm install --save vue-bubble-chat

Usage

import Vue from "vue";
import BubbleChat from "vue-bubble-chat";

Vue.use(BubbleChat);

Params

Param nameDataDescription
positiontype: string, default: 'right'horizontal position on your page, receives 'left' or 'right' values
messagestype: array, default: objects array with all your chat messages
text-fieldtype: stringname of key which is equel to your message
sender-name-fieldtype: stringname of key which is equel to user's name
avatar-link-fieldtype: stringname of key which is equel to user's avatar link; by default it will be simple circle with the first letter of user's name

Events

Event nameDataDescription
chatWasUpdatedobject: {chatState: {...}, {...}, ...}return a an object with chatState key where will be stored full messages array

Example

<template>
   <bubble-chat
     :position="chatPosition"
     :messages="messagesList"
     :text-field="'message'"
     :sender-name-field="'username'"
     :avatar-link-field="'iconUrl'"
   >
   </bubble-chat>
</template>

<script>
 ...
 data() {
   return {
     chatPosition: 'right',
     messagesList: [
      {
          username: 'John Doe',
          message: 'Hey guys! How are you?',
          iconUrl: 'https://www.link-to-john-doe-pic.jpg'
      }
     ]
    }
 }

...
<script>

Enjoy!

License

MIT