Skip to content

Commit 42c2d1c

Browse files
committed
fix: exports from reactivity
1 parent aca7979 commit 42c2d1c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

packages/runtime-vapor/__tests__/apiLifecycle.spec.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import {
22
type DebuggerEvent,
33
ITERATE_KEY,
4-
TrackOpTypes,
5-
TriggerOpTypes,
6-
reactive,
7-
} from '@vue/reactivity'
8-
import {
94
type InjectionKey,
105
type Ref,
6+
TrackOpTypes,
7+
TriggerOpTypes,
118
createComponent,
129
createIf,
1310
createTextNode,
@@ -23,6 +20,7 @@ import {
2320
onUnmounted,
2421
onUpdated,
2522
provide,
23+
reactive,
2624
ref,
2725
renderEffect,
2826
setText,

packages/runtime-vapor/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ export const version = __VERSION__
44
export {
55
// core
66
type Ref,
7+
type DebuggerEvent,
8+
ITERATE_KEY,
9+
TrackOpTypes,
10+
TriggerOpTypes,
711
reactive,
812
ref,
913
readonly,

0 commit comments

Comments
 (0)