@virgodev/chat
v2.0.2
Published
vue code to work with the python virgo-chat server
Downloads
13
Keywords
Readme
Installation
Add ChatAppMixin
to your main app component's mixin list
import ChatAppMixin from '@virgodev/chat/ChatAppMixin';
export default {
mixins: [ChatAppMixin,]
}
Add ChatMixin
to any component that needs the chat api
import ChatMixin from '@virgodev/chat/ChatMixin';
export default {
mixins: [ChatMixin,]
}