feat(reactivity): add support for customRef API

This commit is contained in:
Evan You
2020-04-14 20:45:41 -04:00
parent 4046f0bc03
commit b83c580131
4 changed files with 68 additions and 4 deletions

View File

@@ -1,4 +1,13 @@
export { ref, unref, shallowRef, isRef, toRefs, Ref, UnwrapRef } from './ref'
export {
ref,
unref,
shallowRef,
isRef,
toRefs,
customRef,
Ref,
UnwrapRef
} from './ref'
export {
reactive,
isReactive,