Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 837 Bytes

README.md

File metadata and controls

65 lines (45 loc) · 837 Bytes

mini-vue

In order to learn vue source code

reactivity

  1. reactive

    • reactive
    • readonly
    • isReactive
    • isReadonly
    • isProxy
    • shallowReactive
    • shallowReadonly
    • markRaw
    • toRaw
  2. effect

    • effect
    • stop
    • trigger
    • track
    • enableTracking
    • pauseTracking
    • resetTracking
  3. refs

    • ref
    • shallowRef
    • isRef
    • toRef
    • toRefs
    • unref
    • proxyRefs
    • customRef
    • triggerRef
  4. computed

    • computed
  5. effectScope

    • effectScope
    • getCurrentScope
    • onScopeDispose

runtime-core

runtime-dom

compiler-core

compiler-dom

compiler-sfc

compiler-ssr

server-renderer

shared