
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@gaia-project/vue-beautiful-chat
Advanced tools
A simple and beautiful Vue chat component backend agnostic.
vue-beautiful-chat provides an intercom-like chat window that can be included easily in any project for free. It provides no messaging facilities, only the view component.
vue-beautiful-chat is porting to vue of react-beautiful-chat (which you can find here)
Go to FAQ âŹď¸

$ yarn add vue-beautiful-chat
import Chat from 'vue-beautiful-chat'
Vue.use(Chat)
<template>
<div>
<beautiful-chat
:participants="[agentProfile]"
:title="Support Chat"
:titleImageUrl="https://a.slack-edge.com/66f9/img/avatars-teams/ava_0001-34.png"
:onMessageWasSent="onMessageWasSent"
:messageList="messageList"
:newMessagesCount="newMessagesCount"
:isOpen="isChatOpen"
:close="closeChat"
:open="openChat"
:showEmoji="true"
:showFile="true" />
<a href="#" @click.prevent="openChat()">Open the chat window</a>
</div>
</template>
export default {
data() {
return {
agentProfile: {
id: 'support',
name: 'Support Agent',
imageUrl: 'https://a.slack-edge.com/66f9/img/avatars-teams/ava_0001-34.png'
},
messageList: [],
newMessagesCount: 0,
isChatOpen: false
}
},
methods: {
sendMessage (message) {
if (text.length > 0) {
this.newMessagesCount = this.isChatOpen ? this.newMessagesCount : this.newMessagesCount + 1
this.onMessageWasSent(message)
}
},
onMessageWasSent (message) {
this.messageList = [...this.messageList, message]
},
openChat () {
this.isChatOpen = true
this.newMessagesCount = 0
},
closeChat () {
this.isChatOpen = false
}
}
}
For more detailed examples see the demo folder.
Launcher is the only component needed to use vue-beautiful-chat. It will react dynamically to changes in messages. All new messages must be added via a change in props as shown in the example.
Launcher props:
| prop | type | description |
|---|---|---|
| *participants | [agentProfile] | Represents your product or service's customer service agents. Fields for each agent: id, name, imageUrl |
| *onMessageWasSent | function(message) | Called when a message a message is sent with a message object as an argument. |
| *isOpen | Boolean | The bool indicating whether or not the chat window should be open. |
| *open | Function | The function passed to the component that mutates the above mentioned bool toggle for opening the chat |
| *close | Function | The function passed to the component that mutates the above mentioned bool toggle for closing the chat |
| messageList | [message] | An array of message objects to be rendered as a conversation. |
| showEmoji | Boolean | A bool indicating whether or not to show the emoji button |
| showFile | Boolean | A bool indicating whether or not to show the file chooser button |
| showTypingIndicator | Boolean | A bool indicating whether or not to show the typing indicator |
| colors | Object | An object containing the specs of the colors used to paint the component. See here |
Message objects are rendered differently depending on their type. Currently, only text, emoji and file types are supported. Each message object has an author field which can have the value 'me' or the id of the corresponding agent.
{
author: 'support',
type: 'text',
data: {
text: 'some text'
}
}
{
author: 'me',
type: 'emoji',
data: {
code: 'someCode'
}
}
{
author: 'me',
type: 'file',
data: {
name: 'file.mp3',
url: 'https:123.rf/file.mp3'
}
}
cd vue-beautiful-chatyarn watch # this starts the compiler so everytime you edit files they get compiledcd demoyarn dev # this starts a web server on localhost:8080 so the demo shows up - it also watches for the demo files changes
yarn build on the root to have the library compiled with your latest changes
let redColors = {
header: {
bg: '#D32F2F',
text: '#fff'
},
launcher: {
bg: '#D32F2F'
},
messageList: {
bg: '#fff'
},
sentMessage: {
bg: '#F44336',
text: '#fff'
},
receivedMessage: {
bg: '#eaeaea',
text: '#222222'
},
userInput: {
bg: '#fff',
text: '#212121'
}
}
<beautiful-chat
...
:colors="redColors" />
This is the red variant. Please check this file for the list of variants shown in the demo page online.
Please note that you need to pass an Object containing each one of the color properties otherwise the validation will fail.
FAQs
A simple and beautiful Vue chat component backend agnostic.
We found that @gaia-project/vue-beautiful-chat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.