阅读此文章,你能够了解到:vue
Vue.use
是用来安装插件的。node
用法:ios
Vue.use(plugin)vue-router
install
方法。会将 Vue 做为参数传入
。该方法须要在调用 new Vue()
以前被调用。axios
当 install 方法被同一个插件屡次调用,插件将只会被安装一次。(源码解析的时候会解析如何实现)api
总结:Vue.use是官方提供给开发者的一个api,用来注册、安装类型Vuex、vue-router、ElementUI之类的插件的。数组
咱们在用Vue-cli3.0里面初始化项目的时候,会生成一个入口文件main.js
app
在main.js
中,如何咱们安装了Vue-Router、Vuex、ElementUI,而且想要在项目中使用,就得在入口文件main.js
中调用一下Vue.use()函数
Vue.use(ElementUi);
Vue.use(Vuex);
Vue.use(Router);
复制代码
这样就算是完成了对三个插件的安装,咱们就能够在组件中调用 this.$router
、this.$route
、this.$store
、this.$alert()
(ElementUI的弹窗组件)参数(方法)。ui
咱们在讲什么是Vue.use的时候,已经说明要用use安装的插件,要么是一个对象里面包含install方法,要么自己就是一个方法(自身就是install方法)。
也就是说,这个题目的答案,本质就是:Vue-Router、Vuex、ElementUI三者都具备install方法,而且插件的运行依赖于install方法里的一些操做,才能正常运行,而axios没有install方法也能正常运行。
看到这里你必定会疑惑:
在探究这个问题以前,咱们先看看Vue.use这个方法到底作了什么。
export function initUse (Vue: GlobalAPI) {
Vue.use = function (plugin: Function | Object) {
// 获取已经安装的插件
const installedPlugins = (this._installedPlugins || (this._installedPlugins = []))
// 看看插件是否已经安装,若是安装了直接返回
if (installedPlugins.indexOf(plugin) > -1) {
return this
}
// toArray(arguments, 1)实现的功能就是,获取Vue.use(plugin,xx,xx)中的其余参数。
// 好比 Vue.use(plugin,{size:'mini', theme:'black'}),就会回去到plugin意外的参数
const args = toArray(arguments, 1)
// 在参数中第一位插入Vue,从而保证第一个参数是Vue实例
args.unshift(this)
// 插件要么是一个函数,要么是一个对象(对象包含install方法)
if (typeof plugin.install === 'function') {
// 调用插件的install方法,并传入Vue实例
plugin.install.apply(plugin, args)
} else if (typeof plugin === 'function') {
plugin.apply(null, args)
}
// 在已经安装的插件数组中,放进去
installedPlugins.push(plugin)
return this
}
}
复制代码
总结:
Vue.use方法主要作了以下的事:
- 检查插件是否安装,若是安装了就再也不安装
- 若是没有没有安装,那么调用插件的install方法,并传入Vue实例
咱们知道了Vue.use作了什么以后。咱们看看那些咱们常见的插件,是如何利用这个use方法的。
const install = function(Vue, opts = {}) {
locale.use(opts.locale);
locale.i18n(opts.i18n);
// components是ElementUI的组件数组,里面有Dialog、Input之类的组件
// 往Vue上面挂载组件
components.forEach(component => {
Vue.component(component.name, component);
});
Vue.use(Loading.directive);
// 自定义一些参数
Vue.prototype.$ELEMENT = {
size: opts.size || '',
zIndex: opts.zIndex || 2000
};
// 在Vue原型上注册一些方法,这就是为何咱们能够直接使用this.$alert、this.$loading的缘由,值就是这么来的。
Vue.prototype.$loading = Loading.service;
Vue.prototype.$msgbox = MessageBox;
Vue.prototype.$alert = MessageBox.alert;
Vue.prototype.$confirm = MessageBox.confirm;
Vue.prototype.$prompt = MessageBox.prompt;
Vue.prototype.$notify = Notification;
Vue.prototype.$message = Message;
};
复制代码
一样的方法,咱们来看看Vue-Router的install又作了什么。
咱们先把这个install方法的部分拆解出来,只关注其最最核心的逻辑
若是不想读源码,能够直接看源码后面的文字简单总结
import View from './components/view'
import Link from './components/link'
export let _Vue
export function install (Vue) {
_Vue = Vue
const isDef = v => v !== undefined
const registerInstance = (vm, callVal) => {
let i = vm.$options._parentVnode
if (isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)) {
i(vm, callVal)
}
}
Vue.mixin({
beforeCreate () {
// 若是该组件是根组件
if (isDef(this.$options.router)) {
// 设置根组件叫_routerRoot
this._routerRoot = this
// 根组件的_router属性为,new Vue传进去的router
// $options是在mains.js中,new Vue里的参数,在这里咱们传入的参数,
this._router = this.$options.router
this._router.init(this)
// 经过defineReactive方法,来把this._router.history.current变成响应式的,这个方法的底层就是object.defineProperty
Vue.util.defineReactive(this, '_route', this._router.history.current)
} else {
// 若是该组件不是根组件,那么递归往上找,知道找到根组件的。
// 由于Vue渲染组件是先渲染根组件,而后渲染根组件的子组件啊,而后再渲染孙子组件。
// 结果就是每个组件都有this._routerRoot属性,该属性指向了根组件。
this._routerRoot = (this.$parent && this.$parent._routerRoot) || this
}
registerInstance(this, this)
},
destroyed () {
registerInstance(this)
}
})
// 把自身$router代理为this._routerRoot(根组件的)的_router
// 根组件的_router,就是new Vue传入的 router
// 这样就实现了,每个Vue组件都有$router、$route属性
Object.defineProperty(Vue.prototype, '$router', {
get () { return this._routerRoot._router }
})
// 同理,这样就是把自身的$route,代理到根组件传入的route
Object.defineProperty(Vue.prototype, '$route', {
get () { return this._routerRoot._route }
})
// 注册 <router-view>组件
Vue.component('RouterView', View)
// 注册<router-link>组件
Vue.component('RouterLink', Link)
const strats = Vue.config.optionMergeStrategies
// use the same hook merging strategy for route hooks
strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created
}
复制代码
总结:vue-router的install方法主要帮咱们作了以下事情:
- 经过minxi混入的方式,若是自身是根组件,就把根组件的_router属性映射为new Vue传入的router实例(this.$options.router)。
- 若是自身不是根组件,那么层层往上找,直到找到根组件,并用_routerRoot标记出根组件
- 为每个组件代理
$router
、$route
属性,这样每个组件均可以去到$router
、$route
- 注册
<router-link>
、<router-view>
组件
看到这里,你应该明白了,为何vueRouter须要install才能使用了吧。
底层一点的理由就是,vueRouter须要在install方法,对Vue实例作一些自定义化的操做:好比在vue.prototype中添加$router、$route
属性、注册<router-link>
组件
其实理由也很简单,跟上面须要install的相反的。由于axios是基于Promise封装的库,是彻底独立于Vue的,根本不须要挂载在Vue上也能实现发送请求。
而由于VueRouter须要为咱们提供$router、$routers
之类的属性,要依赖与Vue或者操做Vue实例才能实现。
Vue.use实际上就是Vue实例与插件的一座桥梁。
我这里打算分享一下本身之前作的项目里,把axios改写成一个相似插件的思路。
要写其余插件的思路也类似的。
// api.js
import login from './login'; // login页面全部的aixos请求封装在此
import home from './home'; // home页面的全部请求封装在此
import detail from './detail'; // 详细页面的请求封装在此
const apiList = {
...login,
...home,
...detail,
};
const install = (Vue) => {
if (install.installed) return;
install.installed = true;
/* 定义属性到Vue原型中 这样每个组件就能够经过this.$api.xxx(data) 去发送请求 */
Object.defineProperties(Vue.prototype, {
$api: {
get() {
return apiList;
},
},
});
};
// 导出一个对象,里面有install方法。install方法里就把$api代理到Vue中
export default {
install,
};
复制代码
而后在mains.j
s中,就能够这样写了
import apis from './apis';
Vue.use(apis);
new Vue(参数);
复制代码