UNPKG

403 BJavaScriptView Raw
1import component1 from './component1'
2import component2 from './component2'
3
4const components = [
5 component1, component2
6]
7
8function install (Vue) {
9 components.map(component => {
10 console.info('install----all----')
11 Vue.component(component.name, component)
12 })
13}
14export {
15 install,
16 component1,
17 component2
18}
19export default {
20 install,
21 component1,
22 component2
23}