Vue靜態(tài)怯伊、實(shí)例方法和實(shí)例

前文

rollup配置文件找到入口文件,然后溯源户侥,就知道Vue最源頭定義

  1. src/platforms/web/entry-runtime-with-compiler.js
  2. src/platforms/web/runtime/index.js
  3. src/core/index.js
  4. src/core/instance/index.js

正文

1. Vue實(shí)例方法(src/core/instance/index.js
function Vue (options) {
  ...
}
// 以下混入一些實(shí)例方法vm.xxx
// 混入_init方法
initMixin(Vue)
// 設(shè)置數(shù)據(jù)代理却邓、混入$watch硕糊、$set、$delete等狀態(tài)數(shù)據(jù)相關(guān)實(shí)例方法
stateMixin(Vue)
// 混入$on、$emit等事件相關(guān)實(shí)例方法
eventsMixin(Vue)
// 混入$destroy简十、$forceUpdated等生命周期相關(guān)實(shí)例方法
lifecycleMixin(Vue)
// 混入_render檬某、$nextTick、_s等一些渲染需要的一些方法
renderMixin(Vue)
  • initMixin
    添加原型方法_init螟蝙,Vue初始化會(huì)被調(diào)用
export function initMixin (Vue: Class<Component>) {
  Vue.prototype._init = function (options?: Object) {
     ...
  }
}
  • stateMixin
    設(shè)置數(shù)據(jù)代理恢恼、混入$watch、$set胶逢、$delete等狀態(tài)數(shù)據(jù)相關(guān)實(shí)例方法

export function stateMixin (Vue: Class<Component>) {
    ...
  Object.defineProperty(Vue.prototype, '$data', dataDef)
  Object.defineProperty(Vue.prototype, '$props', propsDef)
  Vue.prototype.$set = set
  Vue.prototype.$delete = del
  Vue.prototype.$watch = function (): Function {
    ...
  }
}
  • eventsMixin
    混入事件相關(guān)實(shí)例方法
export function eventsMixin (Vue: Class<Component>) {
    Vue.prototype.$on = function (event: string | Array<string>, fn: Function): Component {
      ...
    }
    Vue.prototype.$once = function (event: string, fn: Function): Component {
      ...
    }
    Vue.prototype.$off = function (event?: string | Array<string>, fn?: Function): Component {
      ...
    }
    Vue.prototype.$emit = function (event: string): Component {
      ...
    }
  }
  • lifecycleMixin
    混入生命周期相關(guān)方法
export function lifecycleMixin (Vue: Class<Component>) {
    Vue.prototype._update = function (vnode: VNode, hydrating?: boolean) {
      ...
    }
    Vue.prototype.$forceUpdate = function () {
      ...
    }
    Vue.prototype.$destroy = function () {
      ...
    }
  }
  • renderMixin
    混入渲染相關(guān)方法
export function renderMixin (Vue: Class<Component>) {
    installRenderHelpers(Vue.prototype)
    Vue.prototype.$nextTick = function (fn: Function) {
      ...
    }
    Vue.prototype._render = function (): VNode {
      ...
    }
  }

其中installRenderHelpers是混入一些渲染模板使用的方法

export function installRenderHelpers (target: any) {
    target._o = markOnce
    target._n = toNumber
    target._s = toString
    ...
  }
2. Vue靜態(tài)方法和屬性(全局API)
// 初始化一些全局API
initGlobalAPI(Vue)
// 當(dāng)前 Vue 實(shí)例是否運(yùn)行于服務(wù)器
Object.defineProperty(Vue.prototype, '$isServer', {
  get: isServerRendering
})
// 服務(wù)器端渲染上下文(SSR context)
Object.defineProperty(Vue.prototype, '$ssrContext', {
  ...
})
// 定義了 FunctionalRenderContext 靜態(tài)屬性
// 之所以在 Vue 構(gòu)造函數(shù)上暴露該屬性厅瞎,是為了在 ssr 中使用它
Object.defineProperty(Vue, 'FunctionalRenderContext', {
  value: FunctionalRenderContext
})
// rollup會(huì)替換'__VERSION__'為實(shí)際版本
Vue.version = '__VERSION__'

initGlobalAPI是定義一些靜態(tài)方法和屬性

export function initGlobalAPI (Vue: GlobalAPI) {
    // 設(shè)置全局配置
    Object.defineProperty(Vue, 'config', configDef)
    Vue.util = {
      warn,
      extend,
      mergeOptions,
      defineReactive
    }
    // 同樣的方法,全局的設(shè)置
    Vue.set = set
    Vue.delete = del
    Vue.nextTick = nextTick
    
    Vue.options = Object.create(null)
    ASSET_TYPES.forEach(type => {
      Vue.options[type + 's'] = Object.create(null)
    })
    // 這個(gè)就是用于取構(gòu)造函數(shù)的
    Vue.options._base = Vue
    // extend KeepAlive到components初坠,因?yàn)檫@貨是內(nèi)置的
    extend(Vue.options.components, builtInComponents)
    // 掛載use相關(guān)的方法
    initUse(Vue)
    // 掛載mixin靜態(tài)方法
    initMixin(Vue)
    // 掛載extend靜態(tài)方法
    initExtend(Vue)
    // 掛載資源注冊(cè)靜態(tài)方法(Vue.component和簸、Vue.directive、Vue.filter)
    initAssetRegisters(Vue)
  }
  • initUse
    定義Vue.use全局方法
export function initUse(Vue: GlobalAPI) {
    Vue.use = function (plugin: Function | Object) {
        ...
    }
}
  • initMixin
    定義Vue.mixin全局方法
export function initMixin(Vue: GlobalAPI) {
    Vue.mixin = function (mixin: Object) {
        ...
    }
}
  • initExtend
    定義Vue.extend全局方法
export function initExtend(Vue: GlobalAPI) {
    // 每個(gè)實(shí)例構(gòu)造函數(shù)都有唯一的cid碟刺,用于性能優(yōu)化
    Vue.cid = 0
    let cid = 1
    Vue.extend = function (extendOptions: Object): Function {
        ...
    }
}
  • initAssetRegisters
    定義Vue.component锁保、Vue.directive、Vue.filter三個(gè)資源相關(guān)全局方法
import { ASSET_TYPES } from 'shared/constants'
export function initAssetRegisters(Vue: GlobalAPI) {
    ASSET_TYPES.forEach(type => {
        Vue[type] = function (id: string, definition: Function | Object): Function | Object | void {
            ...
        }
    })
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末半沽,一起剝皮案震驚了整個(gè)濱河市爽柒,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌者填,老刑警劉巖浩村,帶你破解...
    沈念sama閱讀 206,482評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異占哟,居然都是意外死亡心墅,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門榨乎,熙熙樓的掌柜王于貴愁眉苦臉地迎上來鸟缕,“玉大人县爬,你說我怎么就攤上這事耕魄》凳” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵肛捍,是天一觀的道長(zhǎng)隐绵。 經(jīng)常有香客問我,道長(zhǎng)拙毫,這世上最難降的妖魔是什么氢橙? 我笑而不...
    開封第一講書人閱讀 55,273評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮恬偷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己袍患,他們只是感情好坦康,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評(píng)論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著诡延,像睡著了一般滞欠。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上肆良,一...
    開封第一講書人閱讀 49,046評(píng)論 1 285
  • 那天筛璧,我揣著相機(jī)與錄音,去河邊找鬼惹恃。 笑死夭谤,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的巫糙。 我是一名探鬼主播朗儒,決...
    沈念sama閱讀 38,351評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼参淹!你這毒婦竟也來了醉锄?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,988評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤浙值,失蹤者是張志新(化名)和其女友劉穎恳不,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體开呐,經(jīng)...
    沈念sama閱讀 43,476評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡烟勋,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評(píng)論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了负蚊。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片神妹。...
    茶點(diǎn)故事閱讀 38,064評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖家妆,靈堂內(nèi)的尸體忽然破棺而出鸵荠,到底是詐尸還是另有隱情,我是刑警寧澤伤极,帶...
    沈念sama閱讀 33,712評(píng)論 4 323
  • 正文 年R本政府宣布蛹找,位于F島的核電站,受9級(jí)特大地震影響哨坪,放射性物質(zhì)發(fā)生泄漏庸疾。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評(píng)論 3 307
  • 文/蒙蒙 一当编、第九天 我趴在偏房一處隱蔽的房頂上張望届慈。 院中可真熱鬧,春花似錦、人聲如沸金顿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽揍拆。三九已至渠概,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間嫂拴,已是汗流浹背播揪。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留筒狠,地道東北人猪狈。 一個(gè)月前我還...
    沈念sama閱讀 45,511評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像窟蓝,于是被迫代替她去往敵國(guó)和親罪裹。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容