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,]
}