From db5e45d0d7b3671071b3d614177efae509f989e7 Mon Sep 17 00:00:00 2001 From: Ubugeeei Date: Mon, 8 Jan 2024 14:35:59 +0900 Subject: [PATCH] fix: error by adding missing handler argument to Proxy (#235) --- .../src/en/10-minimum-example/030-minimum-reactive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/online-book/src/en/10-minimum-example/030-minimum-reactive.md b/book/online-book/src/en/10-minimum-example/030-minimum-reactive.md index 04f6a29b..9d5db782 100644 --- a/book/online-book/src/en/10-minimum-example/030-minimum-reactive.md +++ b/book/online-book/src/en/10-minimum-example/030-minimum-reactive.md @@ -145,7 +145,7 @@ Proxy is a very interesting object. You can use it by passing an object as an argument and using `new` like this: ```ts -const o = new Proxy({ value: 1 }) +const o = new Proxy({ value: 1 }, {}) console.log(o.value) // 1 ```