- 实现 Vue3 核心逻辑的最简模型,本项目参考 https://github.com/cuixiaorui/mini-vue 实现。
- 与该仓库有关的文章可以访问: https://juejin.cn/column/7065487683673391118
- reactive
- shallowReactive
- readonly
- shallowReadonly
- isReactive
- isReadonly
- isProxy
- ref
- isRef
- unRef
- toRaw
- proxyRefs
- computed
- effect
- watch
- 初始化Component主流程
- 初始化Element主流程
- shapeFlags
- 组件代理对象
- 注册事件
- 组件props
- 组件emit
- 组件slots
- getCurrentInstance
- provide/inject
- 更新element的基本流程
- 更新Component的基本流程
- nextTick
- custom renderer
暂未实现