parent
0dc2478569
commit
1b2149dbb2
@ -155,6 +155,13 @@ describe('reactivity/reactive', () => {
|
|||||||
expect(isReactive(obj.bar)).toBe(false)
|
expect(isReactive(obj.bar)).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('should not observe frozen objects', () => {
|
||||||
|
const obj = reactive({
|
||||||
|
foo: Object.freeze({ a: 1 })
|
||||||
|
})
|
||||||
|
expect(isReactive(obj.foo)).toBe(false)
|
||||||
|
})
|
||||||
|
|
||||||
describe('shallowReactive', () => {
|
describe('shallowReactive', () => {
|
||||||
test('should not make non-reactive properties reactive', () => {
|
test('should not make non-reactive properties reactive', () => {
|
||||||
const props = shallowReactive({ n: { foo: 1 } })
|
const props = shallowReactive({ n: { foo: 1 } })
|
||||||
|
@ -33,7 +33,8 @@ const canObserve = (value: any): boolean => {
|
|||||||
!value._isVue &&
|
!value._isVue &&
|
||||||
!value._isVNode &&
|
!value._isVNode &&
|
||||||
isObservableType(toRawType(value)) &&
|
isObservableType(toRawType(value)) &&
|
||||||
!nonReactiveValues.has(value)
|
!nonReactiveValues.has(value) &&
|
||||||
|
!Object.isFrozen(value)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user