refactor: immutable -> readonly

This commit is contained in:
Evan You
2019-08-23 09:38:32 -04:00
parent e1bbfbba94
commit 589d3c2feb
8 changed files with 137 additions and 137 deletions

View File

@@ -2,10 +2,10 @@ export { ref, isRef, toRefs, Ref, UnwrapRef } from './ref'
export {
reactive,
isReactive,
immutable,
isImmutable,
readonly,
isReadonly,
toRaw,
markImmutable,
markReadonly,
markNonReactive
} from './reactive'
export { computed, ComputedRef, ComputedOptions } from './computed'