Skip to content

Commit 43567d9

Browse files
Update src/guide/essentials/computed.md
1 parent b4532fe commit 43567d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/computed.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ const count = ref(2)
352352
353353
const alwaysSmall = computed({
354354
get(previous) {
355-
if (count.value >= 3) {
355+
if (count.value <= 3) {
356356
return count.value;
357357
}
358358

0 commit comments

Comments
 (0)