摘要:源碼版本為原文地址和有必要了解這兩個概念的區別。點開目錄下的,發現確實是導出了一個構造函數。再回過頭看,它給構造函數擴展了一些方法具體的邏輯后文看。
前言
網上vue的源碼分析也蠻多的,不過很多都是1.0版本的并且大多都是在講數據的observe,索性自己看看源碼,雖然很難但是希望能學到點東西。
源碼版本為2.0.0原文地址 runtime和runtime-with-compiler
有必要了解這兩個概念的區別。我們寫vue程序的時候一般會給出template,但是仔細看過文檔的話一定知道vue支持render函數的寫法。runtime版本可直接執行render函數寫法,假如是template寫法,需要先利用compiler解析模板至render函數,再執行render函數渲染。
為了學習起來簡單,選擇先從runtime版本入手,事實上兩者相差的只是一個將模板字符串編譯成為 JavaScript 渲染函數的過程。
入口文件上面已經說過從runtime版本入手,所以首要任務就是找到runtime版本的入口文件。
點開entries目錄下的web-runtime.js,發現確實是導出了一個Vue構造函數。先寫一個例子跑起來試試
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配置文件
"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導入的,代碼如下:
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導入的,代碼如下:
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的構造函數,構造函數做了兩件事:
強制我們使用new關鍵字實例化
實例的初始化操作
定義了構造函數之后,執行了五個函數,這五個函數擴展了Vue
的原型,也即定義了一些實例方法。
export function initMixin (Vue: Class) { 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) } }
具體的邏輯后文看。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/92028.html
摘要:微豆一個使用與重構豆瓣的項目。在中的配置代理重新啟動,打開查看結果是否與直接請求豆瓣相同。更多請參考豆瓣電影文檔。它采用集中式存儲管理應用的所有組件的狀態,并以相應的規則保證狀態以一種可預測的方式發生變化。 微豆 Vdo 一個使用 Vue.js 與 Material Design 重構 豆瓣 的項目。 項目網站 http://vdo.ralfz.com/ GitHub https:...
摘要:特意對前端學習資源做一個匯總,方便自己學習查閱參考,和好友們共同進步。 特意對前端學習資源做一個匯總,方便自己學習查閱參考,和好友們共同進步。 本以為自己收藏的站點多,可以很快搞定,沒想到一入匯總深似海。還有很多不足&遺漏的地方,歡迎補充。有錯誤的地方,還請斧正... 托管: welcome to git,歡迎交流,感謝star 有好友反應和斧正,會及時更新,平時業務工作時也會不定期更...
摘要:今年的月日,的版本正式發布了,其中核心代碼都進行了重寫,于是就專門花時間,對的源碼進行了學習。本篇文章就是源碼學習的總結。實現了并且將靜態子樹進行了提取,減少界面重繪時的對比。的最新源碼可以去獲得。 Vue2.0介紹 從去年9月份了解到Vue后,就被他簡潔的API所吸引。1.0版本正式發布后,就在業務中開始使用,將原先jQuery的功能逐步的進行遷移。 今年的10月1日,Vue的2...
摘要:前言前段時間看了一些的源碼,收獲頗深。介紹是一款非常優秀的用于迅速構建基于的應用工具。不影響閱讀源碼,直接忽略掉。引入的包發送請求的工具。自定義工具用于詢問開發者。 前言 前段時間看了一些vue-cli的源碼,收獲頗深。本想找個時間更新一篇文章,但是最近事情比較多,沒有時間去整理這些東西。趁這兩天閑了下來,便整理了一下,然后跟大家分享一下。如果小伙伴們讀完之后,跟我一樣收獲很多的話,還...
閱讀 2072·2023-04-25 17:48
閱讀 3584·2021-09-22 15:37
閱讀 2937·2021-09-22 15:36
閱讀 5981·2021-09-22 15:06
閱讀 1641·2019-08-30 15:53
閱讀 1428·2019-08-30 15:52
閱讀 711·2019-08-30 13:48
閱讀 1121·2019-08-30 12:44