Skip to content

Latest commit

 

History

History
85 lines (64 loc) · 1.85 KB

File metadata and controls

85 lines (64 loc) · 1.85 KB
title sidebar
Regor API
order
6

This section contains the function-level reference for Regor.

Use this page as an index, then open each API page for signature details and examples.

App and Components

  1. createApp
  2. defineComponent
  3. toFragment
  4. toJsonTemplate
  5. RegorConfig

Reactivity

  1. ref
  2. sref
  3. isRef
  4. isDeepRef
  5. unref
  6. pause
  7. resume
  8. trigger
  9. entangle

Computed and Effects

  1. computed
  2. computeRef
  3. computeMany
  4. watchEffect
  5. collectRefs
  6. silence

Observation and Batch

  1. observe
  2. observeMany
  3. observerCount
  4. batch
  5. startBatch
  6. endBatch

Lifecycle and Scope

  1. useScope
  2. onMounted
  3. onUnmounted
  4. contextRegistry

Cleanup and Unbind

  1. addUnbinder
  2. getBindData
  3. removeNode
  4. unbind
  5. drainUnbind

Utilities

  1. flatten
  2. markRaw
  3. isRaw
  4. persist
  5. html
  6. raw

Logging

  1. warningHandler

Recommendation

Start with:

  1. createApp
  2. ref
  3. sref
  4. computed
  5. watchEffect