tawk.js for vue 2.x,the component about tawk.io of online chat
npm install vue-tawkThis Vue plugin injects a tawk.io instance into all of your vue instances
`` bash`
npm install vue-tawk --save
or
yarn add vue-tawk -D
Usage
` js`
import Tawk from 'vue-echo'
Vue.use(Tawk, {
tawkSrc: 'YOU_TAWK_SRC'
})
`js`
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
}
js
this.$Tawk.$endChat()
``