Skip to content

Latest commit

 

History

History
79 lines (79 loc) · 4.52 KB

README.md

File metadata and controls

79 lines (79 loc) · 4.52 KB

mini-vue3

目前实现功能

reactivity

  • reactive
  • shallowReactive
  • readonly
  • shallowReadonly
  • isReactive
  • isReadonly
  • isProxy
  • ref
  • isRef
  • unRef
  • toRaw
  • proxyRefs
  • computed
  • effect
  • watch

runtime-core

  • 初始化Component主流程
  • 初始化Element主流程
  • shapeFlags
  • 组件代理对象
  • 注册事件
  • 组件props
  • 组件emit
  • 组件slots
  • getCurrentInstance
  • provide/inject
  • 更新element的基本流程
  • 更新Component的基本流程
  • nextTick

runtime-dom

  • custom renderer

compiler

暂未实现