| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- export {
- ref,
- shallowRef,
- isRef,
- toRef,
- toRefs,
- unref,
- proxyRefs,
- customRef,
- triggerRef,
- Ref,
- ToRef,
- ToRefs,
- UnwrapRef,
- ShallowRef,
- ShallowUnwrapRef,
- RefUnwrapBailTypes,
- CustomRefFactory
- } from './ref'
- export {
- reactive,
- readonly,
- isReactive,
- isReadonly,
- isShallow,
- isProxy,
- shallowReactive,
- shallowReadonly,
- markRaw,
- toRaw,
- ReactiveFlags,
- DeepReadonly,
- ShallowReactive,
- UnwrapNestedRefs
- } from './reactive'
- export {
- computed,
- ComputedRef,
- WritableComputedRef,
- WritableComputedOptions,
- ComputedGetter,
- ComputedSetter
- } from './computed'
- export { deferredComputed } from './deferredComputed'
- export {
- effect,
- stop,
- trigger,
- track,
- enableTracking,
- pauseTracking,
- resetTracking,
- ITERATE_KEY,
- ReactiveEffect,
- ReactiveEffectRunner,
- ReactiveEffectOptions,
- EffectScheduler,
- DebuggerOptions,
- DebuggerEvent,
- DebuggerEventExtraInfo
- } from './effect'
- export {
- effectScope,
- EffectScope,
- getCurrentScope,
- onScopeDispose
- } from './effectScope'
- export { TrackOpTypes, TriggerOpTypes } from './operations'
|