From b6463aa1ef46309b06cf390f2c3c0ff0cdcfb3be Mon Sep 17 00:00:00 2001 From: Jared White Date: Mon, 3 Oct 2022 21:37:08 -0700 Subject: [PATCH] export the `effect` function as well from entrypoint --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 10cc9e0..919bee3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export { createApp } from './app' export { nextTick } from './scheduler' -export { reactive } from '@vue/reactivity' +export { effect, reactive } from '@vue/reactivity' import { createApp } from './app'