03_new Vue都发生了什么
2022/4/12 6:14:53
本文主要是介绍03_new Vue都发生了什么,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
当我们new Vue的时候会进入Vue方法
src/core/instance/index.js
function Vue (options) { if (process.env.NODE_ENV !== 'production' && !(this instanceof Vue) ) { warn('Vue is a constructor and should be called with the `new` keyword') } //最主要就是这里 this._init(options) }
//把_init挂载到Vue原型中去的地方
initMixin(Vue) stateMixin(Vue) eventsMixin(Vue) lifecycleMixin(Vue) renderMixin(Vue)
那么这个_init是什么时候定义的,在执行initMixin方法的时候定义的
init为我们做了什么 //合并选项 if (options && options._isComponent) { // optimize internal component instantiation // since dynamic options merging is pretty slow, and none of the // internal component options needs special treatment. initInternalComponent(vm, options) } else { vm.$options = mergeOptions( resolveConstructorOptions(vm.constructor), options || {}, vm ) } // 初始化生命周期 initLifecycle(vm) // 初始化事件 initEvents(vm) // 初始化render函数 initRender(vm) // 执行beforeCreate钩子 callHook(vm, 'beforeCreate') // 初始化initInject initInjections(vm) // resolve injections before // *(重要)初始化状态method props data等 initState(vm) // 初始化provide initProvide(vm) // resolve provide after data/props // 调用created钩子 callHook(vm, 'created')
这篇关于03_new Vue都发生了什么的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01Vue.js 是什么-icode9专业技术文章分享
- 2024-11-01Vue3入门教程:从零开始搭建第一个Vue3项目
- 2024-11-01详解vueRouter4基础教程
- 2024-11-01Vuex4课程:初学者的完整入门指南
- 2024-10-31Vue3课程:新手入门到初级掌握
- 2024-10-31Vue3课程:新手入门到初级应用详解
- 2024-10-31VueRouter4课程:新手入门与实战指南
- 2024-10-31Vuex4学习:从入门到初级实战教程
- 2024-10-31Vue3教程:新手入门与基础实战
- 2024-10-31Vue教程:新手快速入门指南