Skip to content

Commit 4e395b8

Browse files
authored
Merge pull request #494 from klirii/patch-1
Update computed.md
2 parents ea4bd2f + 7d0a1f9 commit 4e395b8

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

src/guide/essentials/computed.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,11 @@ const fullName = computed({
261261

262262
</div>
263263

264-
## Getting the Previous Value {#previous}
264+
## Получение предыдщуего значения {#previous}
265265

266266
- Поддерживается только в версиях 3.4+
267267

268-
In case you need it, you can get the previous value returned by the computed property accessing
269-
the first argument of the getter:
268+
Если вам понадобится, вы можете получить предыдущее значение, возвращенное вычисляемым свойством, обратившись к первому аргументу геттера:
270269

271270
<div class="options-api">
272271

@@ -278,9 +277,9 @@ export default {
278277
}
279278
},
280279
computed: {
281-
// This computed will return the value of count when it's less or equal to 3.
282-
// When count is >=4, the last value that fulfilled our condition will be returned
283-
// instead until count is less or equal to 3
280+
// Это вычисление вернет значение count, если оно меньше или равно 3.
281+
// Если count >=4, вместо него будет возвращено последнее значение, выполнившее наше условие,
282+
// пока count не станет меньше или равно 3.
284283
alwaysSmall(previous) {
285284
if (this.count <= 3) {
286285
return this.count
@@ -301,9 +300,9 @@ import { ref, computed } from 'vue'
301300
302301
const count = ref(2)
303302
304-
// This computed will return the value of count when it's less or equal to 3.
305-
// When count is >=4, the last value that fulfilled our condition will be returned
306-
// instead until count is less or equal to 3
303+
// Это вычисление вернет значение count, если оно меньше или равно 3.
304+
// Если count >=4, вместо него будет возвращено последнее значение, выполнившее наше условие,
305+
// пока count не станет меньше или равно 3.
307306
const alwaysSmall = computed((previous) => {
308307
if (count.value <= 3) {
309308
return count.value
@@ -315,7 +314,7 @@ const alwaysSmall = computed((previous) => {
315314
```
316315
</div>
317316

318-
In case you're using a writable computed:
317+
В случае если вы используете вычисляемое свойство с возможностью записи:
319318

320319
<div class="options-api">
321320

0 commit comments

Comments
 (0)