We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c707b2b commit 0cafdc5Copy full SHA for 0cafdc5
src/guide/essentials/computed.md
@@ -279,7 +279,7 @@ export default {
279
// This computed will return the value of count when it's less or equal to 3.
280
// When count is >=4, the last value that fulfilled our condition will be returned
281
// instead until count is less or equal to 3
282
- alwaysSmall(previous) {
+ alwaysSmall(_, previous) {
283
if (this.count <= 3) {
284
return this.count
285
}
0 commit comments