UNPKG

vue-quick-chat-m

Version:

Modified for own project based on [MatheusrdSantos/vue-quick-chat](https://github.com/MatheusrdSantos/vue-quick-chat).

12 lines (9 loc) 258 B
import Vue from 'vue' import App from './App.vue' import feather from 'vue-icon' Vue.config.productionTip = false Vue.use(feather, 'v-feather-icon') new Vue({ render: h => h(App) }).$mount('#app') export { default as Chat } from './components/Chat.vue';