Skip to content

Commit b4532fe

Browse files
Update src/guide/essentials/computed.md
1 parent 9e8fda2 commit b4532fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/computed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ export default {
327327
computed: {
328328
alwaysSmall: {
329329
get(previous) {
330-
if (this.count >= 3) {
330+
if (this.count <= 3) {
331331
return this.count;
332332
}
333333

0 commit comments

Comments
 (0)