core/index.js<br>initGlobalAPI<br>Vue.prototype.$isServer<br>Vue.prototype.$ssrContext<br>Vue.prototype.$FunctionalRenderContext<br>初始化Vue全局接口,以及原型方法。
core/instance/index.js<br>initMixin(Vue)<br>stateMixin(Vue)<br>eventsMixin(Vue)<br>lifecycleMixin(Vue)<br>renderMixin(Vue)<br>
core/global-api/index.js
core/util/env.js
core/vdom/create-functional-component.js
学习方法
从入口开始看,内部引用模块从上至下看。
所有的文件的前缀是node_modules/vue/src,为了方便查看。