zjkjextend
Version:
A Vue.js 2.0 Web Ui For ZJKJ
21 lines (16 loc) • 291 B
JavaScript
import ZjunFooter from "./ZjunFooter"
const comps = [
ZjunFooter
]
const install = Vue => {
comps.forEach(component => {
Vue.component(component.name, component)
})
}
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue)
}
export {
install,
ZjunFooter
}