A Vue component that adds a chatbox to your page.
This isn't particularly useful, it's used as a demo for how to publish Vue components to NPM!
npm install --save vue-chatbox
Include the script file, then install the component with Vue.use(VueChatbox);
e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/vue-chatbox/dist/vue-chatbox.min.js"></script>
<script type="text/javascript">
Vue.use(VueChatbox);
</script>
import VueChatbox from 'vue-chatbox';
Once installed, it can be used in a template as simply as:
<vue-chatbox></vue-chatbox>