• new Vue 发生了什么
    • 总结

    new Vue 发生了什么

    从入口代码开始分析,我们先来分析 new Vue 背后发生了哪些事情。我们都知道,new 关键字在 Javascript 语言中代表实例化是一个对象,而 Vue 实际上是一个类,类在 Javascript 中是用 Function 来实现的,来看一下源码,在src/core/instance/index.js 中。

    1. function Vue (options) {
    2. if (process.env.NODE_ENV !== 'production' &&
    3. !(this instanceof Vue)
    4. ) {
    5. warn('Vue is a constructor and should be called with the `new` keyword')
    6. }
    7. this._init(options)
    8. }

    可以看到 Vue 只能通过 new 关键字初始化,然后会调用 this._init 方法, 该方法在 src/core/instance/init.js 中定义。

    1. Vue.prototype._init = function (options?: Object) {
    2. const vm: Component = this
    3. // a uid
    4. vm._uid = uid++
    5. let startTag, endTag
    6. /* istanbul ignore if */
    7. if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
    8. startTag = `vue-perf-start:${vm._uid}`
    9. endTag = `vue-perf-end:${vm._uid}`
    10. mark(startTag)
    11. }
    12. // a flag to avoid this being observed
    13. vm._isVue = true
    14. // merge options
    15. if (options && options._isComponent) {
    16. // optimize internal component instantiation
    17. // since dynamic options merging is pretty slow, and none of the
    18. // internal component options needs special treatment.
    19. initInternalComponent(vm, options)
    20. } else {
    21. vm.$options = mergeOptions(
    22. resolveConstructorOptions(vm.constructor),
    23. options || {},
    24. vm
    25. )
    26. }
    27. /* istanbul ignore else */
    28. if (process.env.NODE_ENV !== 'production') {
    29. initProxy(vm)
    30. } else {
    31. vm._renderProxy = vm
    32. }
    33. // expose real self
    34. vm._self = vm
    35. initLifecycle(vm)
    36. initEvents(vm)
    37. initRender(vm)
    38. callHook(vm, 'beforeCreate')
    39. initInjections(vm) // resolve injections before data/props
    40. initState(vm)
    41. initProvide(vm) // resolve provide after data/props
    42. callHook(vm, 'created')
    43. /* istanbul ignore if */
    44. if (process.env.NODE_ENV !== 'production' && config.performance && mark) {
    45. vm._name = formatComponentName(vm, false)
    46. mark(endTag)
    47. measure(`vue ${vm._name} init`, startTag, endTag)
    48. }
    49. if (vm.$options.el) {
    50. vm.$mount(vm.$options.el)
    51. }
    52. }

    Vue 初始化主要就干了几件事情,合并配置,初始化生命周期,初始化事件中心,初始化渲染,初始化 data、props、computed、watcher 等等。

    总结

    Vue 的初始化逻辑写的非常清楚,把不同的功能逻辑拆成一些单独的函数执行,让主线逻辑一目了然,这样的编程思想是非常值得借鉴和学习的。

    由于我们这一章的目标是弄清楚模板和数据如何渲染成最终的 DOM,所以各种初始化逻辑我们先不看。在初始化的最后,检测到如果有 el 属性,则调用 vm.$mount 方法挂载 vm,挂载的目标就是把模板渲染成最终的 DOM,那么接下来我们来分析 Vue 的挂载过程。

    原文: https://ustbhuangyi.github.io/vue-analysis/data-driven/new-vue.html