原理
简介
插件通常用来为 Vue 添加全局功能。-Vue官网
我觉得广义上的插件,实际上就是一些可以复用的功能或组件的封装。
首先分析Vue源码:
1 | //src->core->instance->index.js |
我们可以法Vue实例最初是一个函数,然后在其上挂载各种属性。作为函数,我们就可以为其直接添加属性,或者向其prototype
上添加参数。
Vue的插件通常包括以下几种:
添加全局方法或者 property。如:vue-custom-element
注册代码:
1
2
3
4
5
6function install(Vue) {
Vue.customElement = function vueCustomElement(tag, componentDefinition, options = {}) {
//...
}
//...
}可以看到,这里是直接向
Vue
实例上添加属性方法。使用:
1
Vue.customElement()
另外,这个插件使用了
Web Component
这一新的属性,还得找个时间学习一下。它可以在HTML
文件中直接使用自定义标签。添加全局资源:指令/组件/过滤器/过渡等。如 vue-touch
注册代码(
vue-touch
):1
2
3
4
5
6vueTouch.install = function (Vue) {
Vue.directive('touch', {
//...
}
//...
}这里是使用了
Vue
的directive
定义了一个全局的v-touch
指令。1
2
3<a v-touch:tap="onTap">Tap me!</a>
<div v-touch:swipeleft="onSwipeLeft">Swipe me!</div>另外,还可以通过
Vue.filter
注册全局的filter
来进行使用,比如1
2
3
4
5
6
7
8
9let plugin = {}
plugin.install = function(Vue, options){
Vue.filter('capitalize',
function (value) {
if (!value) return ''
value = value.toString()
return value.charAt(0).toUpperCase() + value.slice(1)
})
}则可以直接在
Vue
的tempelate
中使用1
<div v-bind:id="rawId | formatId"></div>
值得注意的是全局组件的注册,因为很多时候我们开发组件是需要组件样式支撑的。这个时候就需要全局注册组件。比如
element-UI
(可惜无了),iview
这种组件库就需要注册大量的全局样式。注册代码(部分)(
element-UI
):1
2
3components.forEach(component => {
Vue.component(component.name, component);
});这里使用
Vue.component
注册全局组件,这样注册的组件可以直接在任何组件中引用而不需在script
中申明。值得注意的是,这样引入的组件即使未被引用,依然会被打包,因此,在大型组件库中尽量少使用全局注册,否则会增加打包后的js大小。
通过全局混入来添加一些组件选项。如 vue-router
注册代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18export function install (Vue) {
Vue.mixin({
beforeCreate () {
if (isDef(this.$options.router)) {
this._routerRoot = this
this._router = this.$options.router
this._router.init(this)
Vue.util.defineReactive(this, '_route', this._router.history.current)
} else {
this._routerRoot = (this.$parent && this.$parent._routerRoot) || this
}
registerInstance(this, this)
},
destroyed () {
registerInstance(this)
}
})
}可以看到,这里
vue-router
使用了Vue.minin
对beforeCreate
进行了混入,使该混入钩子在Vue
自身的钩子之前调用。添加 Vue 实例方法,通过把它们添加到
Vue.prototype
上实现。比如element-UI等组件库。注册代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24const install = function(Vue, opts = {}) {
locale.use(opts.locale);
locale.i18n(opts.i18n);
components.forEach(component => {
Vue.component(component.name, component);
});
Vue.use(InfiniteScroll);
Vue.use(Loading.directive);
Vue.prototype.$ELEMENT = {
size: opts.size || '',
zIndex: opts.zIndex || 2000
};
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
的prototype
上添加很多参数方法。一个库,提供自己的 API,同时提供上面提到的一个或多个功能。如 vue-router
vue-router
中有一个index.js
与install.js
,在install.js
中,只提供了与Vue
相关的注册函数。在index中,定义了很多自己的API。
使用插件
通过全局方法 Vue.use()
使用插件。它需要在你调用 new Vue()
启动应用之前完成:
1 | // 调用 `MyPlugin.install(Vue)` |
也可以传入一个可选的选项对象:
1 | Vue.use(MyPlugin, { someOption: true }) |
Vue.use
会自动阻止多次注册相同插件,届时即使多次调用也只会注册一次该插件。
Vue.js 官方提供的一些插件 (例如 vue-router
) 在检测到 Vue
是可访问的全局变量时会自动调用 Vue.use()
。然而在像 CommonJS 这样的模块环境中,你应该始终显式地调用 Vue.use()
:
1 | // 用 Browserify 或 webpack 提供的 CommonJS 模块环境时 |
另外,全局样式表的引入需要直接在main.js
中import
,这样的css样式也会被全局注册,会影响所有的组件。
开发插件
Vue
插件开发其实很简单,最关键的就是其必须要暴露一个install
方法。这个方法的第一个参数是 Vue
构造器,第二个参数是一个可选的选项对象:
1 | MyPlugin.install = function (Vue, options) { |
应用
根据上面的原理,我们只需要遵循插件定义和使用的规则即可,其目录解构并不重要,但是为了规范,可以新建一个plugin
用来存储插件文件,插件的目录解构可以自定义。另外,项目直接使用vue-cli
生成一个普通的项目即可。
可以看到,在index.js
文件中,我们定义了install
函数,并在Vue
的prototype
上挂载了一个函数和一个方法,同时,也注册了一个全局的组件dwin
。最后将该对象导出。
然后在main.js
中,我们从index.js
中引入dw
,然后使用Vue.use(dw)
将该组件导入。
然后我们就可以在任何组件中使用dwin
组件了。
这样一个简单的组件开发就完成了,具体的打包和上传到npm仓库见这里