UNPKG

vue-quick-chat

Version:

This vue component is a simple chat that can be easily imported and used in your project.

10 lines (7 loc) 192 B
import Vue from 'vue' import App from './App.vue' Vue.config.productionTip = false new Vue({ render: h => h(App) }).$mount('#app') export { default as Chat } from './components/Chat.vue';