// Core API ------------------------------------------------------------------ export const version = __VERSION__ export { // core computed, reactive, ref, readonly, // utilities unref, proxyRefs, isRef, toRef, toRefs, isProxy, isReactive, isReadonly, // advanced customRef, triggerRef, shallowRef, shallowReactive, shallowReadonly, markRaw, toRaw, // effect effect, stop, ReactiveEffect, // effect scope effectScope, EffectScope, getCurrentScope, onScopeDispose } from '@vue/reactivity' export { watch, watchEffect, watchPostEffect, watchSyncEffect } from './apiWatch' export { onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBeforeUnmount, onUnmounted, onActivated, onDeactivated, onRenderTracked, onRenderTriggered, onErrorCaptured, onServerPrefetch } from './apiLifecycle' export { provide, inject } from './apiInject' export { nextTick } from './scheduler' export { defineComponent } from './apiDefineComponent' export { defineAsyncComponent } from './apiAsyncComponent' export { useAttrs, useSlots } from './apiSetupHelpers' //