Vue源码分析系列文章(原创)

374 阅读1分钟

1.概述

2.一系列Vue原型方法

3.全局api

4.Vue.use()插件机制

5.模版编译入口文件

6.new Vue(options)

7.模板编译

8.模版编译-parse(template,options)

9.模版编译-generate(ast, options)

10.虚拟dom之render()

11.渲染之Vue.prototype._update

12.渲染之createElm初次渲染

13.数据响应式原理

14.dom异步更新机制(nextTick)