wip: state -> reactive, value -> ref

This commit is contained in:
Evan You
2019-08-16 09:42:46 -04:00
parent 09141b56fd
commit caba6d5c9e
17 changed files with 398 additions and 400 deletions

View File

@@ -1,14 +1,14 @@
export { value, isValue, Value, UnwrapValue } from './value'
export { ref, isRef, Ref, UnwrapRef } from './ref'
export {
state,
isState,
immutableState,
isImmutableState,
reactive,
isReactive,
immutable,
isImmutable,
toRaw,
markImmutable,
markNonReactive
} from './state'
export { computed, ComputedValue } from './computed'
} from './reactive'
export { computed, ComputedRef } from './computed'
export {
effect,
stop,