Skip to content

Commit 558504a

Browse files
gem-xliliximomo
authored andcommitted
docs: fix code syntax error
1 parent d016483 commit 558504a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const state = reactive({
8484
// no unwrap, `.value` is required
8585
state.list[0].value === 0; // true
8686

87-
state.list.push(ref(1);
87+
state.list.push(ref(1));
8888
// no unwrap, `.value` is required
8989
state.list[1].value === 1; // true
9090
```

README.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const state = reactive({
8484
// no unwrap, `.value` is required
8585
state.list[0].value === 0; // true
8686

87-
state.list.push(ref(1);
87+
state.list.push(ref(1));
8888
// no unwrap, `.value` is required
8989
state.list[1].value === 1; // true
9090
```

0 commit comments

Comments
 (0)