From: Robbin Baauw Date: Fri, 3 Apr 2020 13:30:58 +0000 (+0200) Subject: feat(reactivity): add effect to public api (#909) X-Git-Tag: v3.0.0-alpha.11~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fba2418507d9c65891e8d14bd63736adb377556;p=thirdparty%2Fvuejs%2Fcore.git feat(reactivity): add effect to public api (#909) --- diff --git a/packages/runtime-core/src/index.ts b/packages/runtime-core/src/index.ts index b9abec16b8..eb5b037081 100644 --- a/packages/runtime-core/src/index.ts +++ b/packages/runtime-core/src/index.ts @@ -2,6 +2,7 @@ export const version = __VERSION__ export { + effect, ref, unref, shallowRef,