vue-abchat
Version:
## Project setup ``` npm install ```
17 lines (13 loc) • 308 B
JavaScript
import abchat from './components/vue-abchat.vue'
const install = (Vue) => {
console.log(Vue)
Vue().component(abchat.name, abchat)
}
// auto install if used in browser
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue)
}
export {
abchat
}
export default install