Skip to content

Commit 44ab1cd

Browse files
committed
fix(reactivity): readonly() compat with classes
fix #12574
1 parent 530b56a commit 44ab1cd

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/v3/reactivity/readonly.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function createReadonly(target: any, shallow: boolean) {
6969
return existingProxy
7070
}
7171

72-
const proxy = {}
72+
const proxy = Object.create(Object.getPrototypeOf(target))
7373
def(target, existingFlag, proxy)
7474

7575
def(proxy, ReactiveFlags.IS_READONLY, true)

test/unit/features/v3/reactivity/readonly.spec.ts

+21
Original file line numberDiff line numberDiff line change
@@ -499,4 +499,25 @@ describe('reactivity/readonly', () => {
499499
expect(obj.ror).toBe(true)
500500
expect(toRaw(obj).ror).not.toBe(ror) // ref successfully replaced
501501
})
502+
503+
test('compatiblity with classes', () => {
504+
const spy = vi.fn()
505+
class Foo {
506+
x = 1
507+
log() {
508+
spy(this.x)
509+
}
510+
change() {
511+
this.x++
512+
}
513+
}
514+
const foo = new Foo()
515+
const readonlyFoo = readonly(foo)
516+
readonlyFoo.log()
517+
expect(spy).toHaveBeenCalledWith(1)
518+
519+
readonlyFoo.change()
520+
expect(readonlyFoo.x).toBe(1)
521+
expect(`et operation on key "x" failed`).toHaveBeenWarned()
522+
})
502523
})

0 commit comments

Comments
 (0)