wrapper of tawk
This Vue plugin injects a tawk.io instance into all of your vue instances
npm install vue-tawk --save
or
yarn add vue-tawk -D
First you'll need to register the plugin
Second you should had a account of https://www.tawk.to/
import Tawk from 'vue-echo'
Vue.use(Tawk, {
tawkSrc: 'YOU_TAWK_SRC'
})
this.$Tawk.$updateChatUser(user)
the object of user should like that
{
name: 'user name',
email: 'user email',
hash: '' // see more https://www.tawk.to/javascript-api/#securemode
}
you should close the chat when user logout your website
this.$Tawk.$endChat()