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

@@ -7,13 +7,14 @@ export {
shallowRef,
isRef,
toRefs,
customRef,
reactive,
isReactive,
readonly,
isReadonly,
shallowReactive,
toRaw,
markNonReactive
markNonReactive,
toRaw
} from '@vue/reactivity'
export { computed } from './apiComputed'
export { watch, watchEffect } from './apiWatch'