2023-11-29 01:25:46 +08:00
|
|
|
// Core API ------------------------------------------------------------------
|
|
|
|
|
|
|
|
export const version = __VERSION__
|
|
|
|
export {
|
|
|
|
// core
|
|
|
|
reactive,
|
|
|
|
ref,
|
|
|
|
readonly,
|
2023-11-29 02:38:01 +08:00
|
|
|
computed,
|
2023-11-29 01:25:46 +08:00
|
|
|
// utilities
|
|
|
|
unref,
|
|
|
|
proxyRefs,
|
|
|
|
isRef,
|
|
|
|
toRef,
|
|
|
|
toValue,
|
|
|
|
toRefs,
|
|
|
|
isProxy,
|
|
|
|
isReactive,
|
|
|
|
isReadonly,
|
|
|
|
isShallow,
|
|
|
|
// advanced
|
|
|
|
customRef,
|
|
|
|
triggerRef,
|
|
|
|
shallowRef,
|
|
|
|
shallowReactive,
|
|
|
|
shallowReadonly,
|
|
|
|
markRaw,
|
|
|
|
toRaw,
|
|
|
|
// effect
|
|
|
|
stop,
|
|
|
|
ReactiveEffect,
|
|
|
|
// effect scope
|
|
|
|
effectScope,
|
|
|
|
EffectScope,
|
|
|
|
getCurrentScope,
|
|
|
|
onScopeDispose
|
|
|
|
} from '@vue/reactivity'
|
2023-11-29 02:38:01 +08:00
|
|
|
export { effect } from './scheduler'
|
2023-11-23 23:42:08 +08:00
|
|
|
export * from './on'
|
2023-11-23 23:43:19 +08:00
|
|
|
export * from './render'
|
|
|
|
export * from './template'
|