網上vue的源碼分析也蠻多的,不過不少都是1.0版本的而且大多都是在講數據的observe,索性本身看看源碼,雖然很難可是但願能學到點東西。vue
源碼版本爲2.0.0
有必要了解這兩個概念的區別。咱們寫vue程序的時候通常會給出template,可是仔細看過文檔的話必定知道vue支持render函數的寫法。runtime版本可直接執行render函數寫法,假如是template寫法,須要先利用compiler解析模板至render函數,再執行render函數渲染。 webpack
爲了學習起來簡單,選擇先從runtime版本入手,事實上二者相差的只是一個將模板字符串編譯成爲 JavaScript 渲染函數
的過程。git
上面已經說過從runtime版本入手,因此首要任務就是找到runtime版本的入口文件。 github
點開entries目錄下的web-runtime.js,發現確實是導出了一個Vue構造函數。先寫一個例子跑起來試試web
import Vue from '../src/entries/web-runtime.js' window.app = new Vue({ data: { msg: 'hello', }, render (h) { return h('p', this.msg) } }).$mount('#root')
簡單的寫個webpack配置文件api
'use strict' const path = require('path') const webpack = require('webpack') module.exports = { watch: true, entry: { app: './index.js' }, output: { filename: '[name].js', path: path.resolve(__dirname, 'dist') }, resolve: { extensions: ['.js'], alias: { vue: path.resolve(__dirname, '../src/entries/web-runtime-with-compiler'), compiler: path.resolve(__dirname, '../src/compiler'), core: path.resolve(__dirname, '../src/core'), shared: path.resolve(__dirname, '../src/shared'), web: path.resolve(__dirname, '../src/platforms/web'), server: path.resolve(__dirname, '../src/server'), entries: path.resolve(__dirname, '../src/entries'), sfc: path.resolve(__dirname, '../src/sfc') } }, module: { rules: [ { test: /\.js$/, loader: "babel-loader", include: [path.resolve(__dirname, '../src')] } ] } }
注意配置一下extensions和alias,因爲vue的源碼編寫時添加了類型檢測(flow.js),因此須要在babel中添加插件
transform-flow-strip-types
webpack打包一下打開瀏覽器,hello映入眼簾。
至此,準備工做結束瀏覽器
點開web-runtime.js能夠發現Vue是從core/index.js導入的,代碼以下:babel
import config from './config' import { initGlobalAPI } from './global-api/index' import Vue from './instance/index' initGlobalAPI(Vue) Object.defineProperty(Vue.prototype, '$isServer', { get: () => config._isServer }) Vue.version = '2.0.0' export default Vue
又發現Vue是從instance/index.js導入的,代碼以下:app
import { initMixin } from './init' import { stateMixin } from './state' import { renderMixin } from './render' import { eventsMixin } from './events' import { lifecycleMixin } from './lifecycle' import { warn } from '../util/index' 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) } initMixin(Vue) stateMixin(Vue) eventsMixin(Vue) lifecycleMixin(Vue) renderMixin(Vue) export default Vue
到此時,咱們算是真正的看到了Vue的構造函數,構造函數作了兩件事:函數
定義了構造函數以後,執行了五個函數,這五個函數擴展了Vue
的原型,也即定義了一些實例方法。
export function initMixin (Vue: Class<Component>) { Vue.prototype._init = function (options?: Object) { const vm: Component = this ...
再回過頭看initGlobalAPI(Vue)
,它給Vue構造函數擴展了一些方法
export function initGlobalAPI (Vue: GlobalAPI) { // config const configDef = {} configDef.get = () => config if (process.env.NODE_ENV !== 'production') { configDef.set = () => { util.warn( 'Do not replace the Vue.config object, set individual fields instead.' ) } } Object.defineProperty(Vue, 'config', configDef) Vue.util = util Vue.set = set Vue.delete = del Vue.nextTick = util.nextTick Vue.options = Object.create(null) config._assetTypes.forEach(type => { Vue.options[type + 's'] = Object.create(null) }) util.extend(Vue.options.components, builtInComponents) initUse(Vue) initMixin(Vue) initExtend(Vue) initAssetRegisters(Vue) }
export function initMixin (Vue: GlobalAPI) { Vue.mixin = function (mixin: Object) { Vue.options = mergeOptions(Vue.options, mixin) } }
具體的邏輯後文看。