vue3-core/packages/runtime-vapor/src/index.ts

44 lines
763 B
TypeScript
Raw Normal View History

// Core API ------------------------------------------------------------------
export const version = __VERSION__
export {
// core
reactive,
ref,
readonly,
2023-11-29 02:38:01 +08:00
computed,
// 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,
2023-12-01 01:28:16 +08:00
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'
export * from './scheduler'
export { withModifiers, withKeys } from '@vue/runtime-dom'