摘要:源码版本为原文地址和有必要了解这两个概念的区别。点开目录下的,发现确实是导出了一个构造函数。再回过头看,它给构造函数扩展了一些方法具体的逻辑后文看。
前言
网上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) } }
具体的逻辑后文看。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/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的源码,收获颇深。本想找个时间更新一篇文章,但是最近事情比较多,没有时间去整理这些东西。趁这两天闲了下来,便整理了一下,然后跟大家分享一下。如果小伙伴们读完之后,跟我一样收获很多的话,还...
阅读 2025·2023-04-25 17:48
阅读 3561·2021-09-22 15:37
阅读 2843·2021-09-22 15:36
阅读 5740·2021-09-22 15:06
阅读 1621·2019-08-30 15:53
阅读 1397·2019-08-30 15:52
阅读 682·2019-08-30 13:48
阅读 1098·2019-08-30 12:44