浅谈vue.use()方法从源码到使用(2)

import a from './a' import b from './b' let components = { a, b } const installBase = { install (Vue) { Object.keys(components).map(key => Vue.component(key, components[key])) } }

main.js

import Vue from 'vue' import base from './base.js' Vue.use(base) new Vue({ ... })

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8238d1bc1468c39c319e2774f15653e1.html