在Vue 2.x 中会使用 mxins 对 Vue 构造函数进行原型链上的方法或属性的定义
方法 | 作用 |
---|
initMixin(Vue) | 混入 vm._init | stateMixin(Vue) | 新建空对象并与vm.$data,vm.$props(对应 this._data,this._props)相关联(同时修改defData 和 defProps 的 get,set,不允许任意新增值); 新增$set,$delete,$watch | eventsMixin(Vue) | $on,$once,$off,$emit | lifecycleMixin(Vue) | _update,$forceUpdate,$destroy | renderMixin(Vue) | $nextTick,_render, |
stateMixin(Vue) 混入状态相关的属性
dataDef.get = function (this: Component) { return this._data };
propsDef.get = function (this: Component) { return this._props };
Object.defineProperty(Vue.prototype, '$data', dataDef);
Object.defineProperty(Vue.prototype, '$props', propsDef);
Vue.prototype.$set = set;
Vue.prototype.$delete = del;
Vue.prototype.$watch = function (
expOrFn: string | Function,
cb: any,
options?: WatcherOption
): unwatch{}
eventsMixin(Vue) 混入事件相关方法
Vue.prototype.$on
Vue.prototype.$once
Vue.prototype.$off
Vue.prototype.$emit
lifecycleMixin(Vue) 混入生命周期的属性
Vue.prototype._update = function (vnode: VNodeInstance, hydrating?: boolean) {}
Vue.prototype.$forceUpdate = function () { }
remove(parent.$children, vm)
Vue.prototype.$destroy = function () { }
renderMixin(Vue) 混入渲染相关的属性
Vue.prototype.$nextTick()
Vue.prototype._render = function (): VNodeInstance {}
|