@virgodev/chat

vue code to work with the python virgo-chat server

Usage no npm install needed!

<script type="module">
  import virgodevChat from 'https://cdn.skypack.dev/@virgodev/chat';
</script>

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